Advertisement
PVS-StudioWarnings

PVS-Studio warning V547 for WinMerge

Nov 25th, 2014
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.62 KB | None | 0 0
  1. typedef String std::wstring;
  2.  
  3. void CSplashWnd::OnPaint()
  4. {
  5.   ...
  6.   String text = LoadResString(IDS_SPLASH_DEVELOPERS);
  7.  
  8.   // avoid dereference of empty strings and
  9.   // the NULL termiated character
  10.   if (text.length() >= 0)
  11.   {
  12.   ...
  13. }
  14.  
  15. This suspicious code was found in WinMerge project by PVS-Studio static code analyzer.
  16. Warning message is:
  17. V547 Expression 'text.length() >= 0' is always true. Unsigned type value is always >= 0. Merge splash.cpp 262
  18.  
  19. 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