Advertisement
PVS-StudioWarnings

PVS-Studio warning V597 for TortoiseSVN

Nov 24th, 2014
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.58 KB | None | 0 0
  1. static void sha_mpint(SHA_State * s, Bignum b)
  2. {
  3.   unsigned char lenbuf[4];
  4.   ....
  5.   memset(lenbuf, 0, sizeof(lenbuf));
  6. }
  7.  
  8. This suspicious code was found in TortoiseSVN 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 'lenbuf' buffer. The RtlSecureZeroMemory() function should be used to erase the private data. sshdss.c 23
  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