You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Coverity says:
"CID 47629 (#1 of 1): Buffer not null terminated
(BUFFER_SIZE_WARNING)11. buffer_size_warning: Calling strncpy with a
maximum size argument of 255 bytes on destination array
config->configfile of size 255 bytes might leave the destination string
unterminated."
Instead of strncpy, the code now uses safe_strdup. This also lifts the
255 characters limit. While file names are indeed limitted to 255
chars on some file systems, path length is typically unlimitted.
0 commit comments