Advertisement
PVS-StudioWarnings

PVS-Studio warning V607 for UnrealEngine4

Nov 26th, 2014
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.52 KB | None | 0 0
  1. void FNativeClassHeaderGenerator::ExportProperties(....)
  2. {
  3.   ....
  4.   int32 NumByteProperties = 0;
  5.   ....
  6.   if (bIsByteProperty)
  7.   {
  8.     NumByteProperties;
  9.   }
  10.   ....
  11. }
  12.  
  13. This suspicious code was found in UnrealEngine4 project by PVS-Studio static code analyzer.
  14. Warning message is:
  15. V607 Ownerless expression 'NumByteProperties'. codegenerator.cpp 633
  16.  
  17. 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