Advertisement
PVS-StudioWarnings

PVS-Studio warning V597 for UCSniff

Nov 20th, 2014
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.66 KB | None | 0 0
  1. int request_http_corporate_url(char *directory_buf,
  2.                                int message_id)
  3. {
  4.   char send_msg[2048] = {'\0'};
  5.   ...
  6.   memset(send_msg,'\0',sizeof(send_msg));
  7.   ...
  8. }
  9.  
  10. This suspicious code was found in UCSniff 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 'send_msg' buffer. The RtlSecureZeroMemory() function should be used to erase the private data.  http_handler.c 84
  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