Advertisement
PVS-StudioWarnings

PVS-Studio warning V597 for Dolphin

Nov 21st, 2014
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.60 KB | None | 0 0
  1. void md5_hmac_starts( md5_context *ctx, unsigned char *key,
  2.                       int keylen )
  3. {
  4.   ...
  5.   memset( sum, 0, sizeof( sum ) );
  6. }
  7.  
  8. This suspicious code was found in Dolphin project by PVS-Studio static code analyzer.
  9. Warning message is:
  10. V597 The compiler could delete the 'memset' function call, which is used to flush 'sum' buffer. The RtlSecureZeroMemory() function should be used to erase the private data. Common md5.cpp 353
  11.  
  12. 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