Advertisement
PVS-StudioWarnings

PVS-Studio warning V617 for MTASA

Nov 27th, 2014
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.64 KB | None | 0 0
  1. #define D3DCLEAR_ZBUFFER 0x00000002l
  2.  
  3. HRESULT CProxyDirect3DDevice9::Clear(....)
  4. {
  5.   if ( Flags | D3DCLEAR_ZBUFFER )
  6.     CGraphics::GetSingleton().
  7.       GetRenderItemManager ()->SaveReadableDepthBuffer();
  8.   ....
  9. }
  10.  
  11. This suspicious code was found in MTASA project by PVS-Studio static code analyzer.
  12. Warning message is:
  13. V617 Consider inspecting the condition. The '0x00000002l' argument of the '|' bitwise operation contains a non-zero value. cproxydirect3ddevice9.cpp 520
  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