Task #984 - perl-Digest-MD5-2.59-4.fc41/scan-results.err

back to task #984
download
Error: CPPCHECK_WARNING:
perl-Digest-MD5-2.59-build/Digest-MD5-2.59/MD5.c: information[normalCheckLevelMaxBranches]: Limiting analysis of branches. Use --check-level=exhaustive to analyze all branches.

Error: CLANG_WARNING:
perl-Digest-MD5-2.59-build/Digest-MD5-2.59/MD5.c:1063:17: warning[deadcode.DeadStores]: Value stored to 'file' during its initialization is never read
# 1061|       char* file = __FILE__;
# 1062|   #else
# 1063|->     const char* file = __FILE__;
# 1064|   #endif
# 1065|   

Error: CLANG_WARNING:
perl-Digest-MD5-2.59-build/Digest-MD5-2.59/MD5.xs:289:2: warning[core.UndefinedBinaryOperatorResult]: The left operand of '<<' is a garbage value
#  287|   
#  288|   	/* Round 1 */
#  289|-> 	FF (a, b, c, d, S11, 0xd76aa478); /* 1 */
#  290|   	FF (d, a, b, c, S12, 0xe8c7b756); /* 2 */
#  291|   	FF (c, d, a, b, S13, 0x242070db); /* 3 */

Error: CPPCHECK_WARNING (CWE-457):
perl-Digest-MD5-2.59-build/Digest-MD5-2.59/MD5.xs:508: warning[uninitvar]: Uninitialized variable: to
#  506|       }
#  507|       *d = '\0';
#  508|->     return to;
#  509|   }
#  510|