Task #119085 - added.err

back to task #119085
download
Error: CPPCHECK_WARNING (CWE-476):
libarchive-3.8.7/libarchive_fe/line_reader.c:67: warning[nullPointerOutOfMemory]: If memory allocation fails, then there is a possible null pointer dereference: lr
#   65|   	lr->nullSeparator = nullSeparator;
#   66|   	lr->pathname = strdup(pathname);
#   67|-> 	if (lr->pathname == NULL)
#   68|   		lafe_errc(1, ENOMEM, "Can't open %s", pathname);
#   69|