Advertisement
PVS-StudioWarnings

PVS-Studio warning V665 for TortoiseGIT

Nov 27th, 2014
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.66 KB | None | 0 0
  1. BOOL CMailMsg::DetectMailClient(CString& sMailClientName)
  2. {
  3.   ....
  4.   #pragma warning(disable:4996)
  5.   LONG result = regKey.QueryValue(buf, _T(""), &buf_size);
  6.   #pragma warning(default:4996)
  7.   ....
  8. }
  9.  
  10. This suspicious code was found in TortoiseGIT project by PVS-Studio static code analyzer.
  11. Warning message is:
  12. V665 Possibly, the usage of '#pragma warning(default: X)' is incorrect in this context. The '#pragma warning(push/pop)' should be used instead. Check lines: 132, 134. Utils mailmsg.cpp 134
  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