Advertisement
PVS-StudioWarnings

PVS-Studio warning V543 for WinMerge

Nov 26th, 2014
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.54 KB | None | 0 0
  1. static HRESULT safeInvokeA(LPDISPATCH pi, VARIANT *ret,
  2.                            DISPID id, LPCCH op, ...)
  3. {
  4.   HRESULT h;
  5.   ...
  6.   // set h to FAILED
  7.   h = -1;
  8.   ...
  9. }
  10.  
  11. This suspicious code was found in WinMerge project by PVS-Studio static code analyzer.
  12. Warning message is:
  13. V543 It is odd that value '-1' is assigned to the variable 'h' of HRESULT type. Merge plugins.cpp 992
  14.  
  15. 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