Task #131620 - added.err

back to task #131620
download
Error: CPPCHECK_WARNING (CWE-476):
libguestfs-1.60.1/common/options/keys.c:145: warning[nullPointerOutOfMemory]: If memory allocation fails, then there is a possible null pointer dereference: out
#  143|      * rest of the code simpler.
#  144|      */
#  145|->   memcpy (out, "base64:", 7);
#  146|     out[7 + outlen] = '\0';
#  147|     out += 7;

Error: CPPCHECK_WARNING (CWE-476):
libguestfs-1.60.1/common/options/keys.c:146: warning[nullPointerOutOfMemory]: If memory allocation fails, then there is a possible null pointer dereference: out
#  144|      */
#  145|     memcpy (out, "base64:", 7);
#  146|->   out[7 + outlen] = '\0';
#  147|     out += 7;
#  148|   

Error: CPPCHECK_WARNING (CWE-682):
libguestfs-1.60.1/common/options/keys.c:147: error[nullPointerArithmeticOutOfMemory]: If memory allocation fails: pointer addition with NULL pointer.
#  145|     memcpy (out, "base64:", 7);
#  146|     out[7 + outlen] = '\0';
#  147|->   out += 7;
#  148|   
#  149|     for (i = 0, j = 0; i < inplen;) {