Advertisement
PVS-StudioWarnings

PVS-Studio warning V593 for vscap

Nov 26th, 2014
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.72 KB | None | 0 0
  1. int EditStreamPadSilence(PAVISTREAM pavi, LONG * plPos,
  2.                          LONG * plLength)
  3. {
  4.   ...
  5.   if (hr = AVIFileGetStream(pfileSilence, &paviSilence,
  6.                         streamtypeAUDIO , 0) != AVIERR_OK)
  7.   {
  8.     ErrMsg("Unable to load silence stream");
  9.     return hr;
  10.   }
  11.   ...
  12. }
  13.  
  14. This suspicious code was found in vscap project by PVS-Studio static code analyzer.
  15. Warning message is:
  16. V593 Consider reviewing the expression of the 'A = B != C' kind. The expression is calculated as following: 'A = (B != C)'. playplus playplusview.cpp 3620
  17.  
  18. 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