Advertisement
PVS-StudioWarnings

PVS-Studio warning V597 for CamStudio

Nov 24th, 2014
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.66 KB | None | 0 0
  1. char* crypt_md5(const char* pw, const char* salt)
  2. {
  3.   unsigned char final[MD5_SIZE];
  4.   ....
  5.   /* Don't leave anything around in vm they could use. */
  6.   memset(final,0,sizeof final);
  7.   return passwd;
  8. }
  9.  
  10. This suspicious code was found in CamStudio project by PVS-Studio static code analyzer.
  11. Warning message is:
  12. V597 The compiler could delete the 'memset' function call, which is used to flush 'final' buffer. The RtlSecureZeroMemory() function should be used to erase the private data. md5.c 342
  13.  
  14. PVS-Studio is a static analyzer for detecting bugs in the source code of applications written in C, C++, C++11, C++/CX. Site: http://www.viva64.com/en/pvs-studio/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement