Advertisement
PVS-StudioWarnings

PVS-Studio warning V611 for CxImage

Nov 24th, 2014
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.62 KB | None | 0 0
  1. bool CxImage::LayerCreate(int32_t position)
  2. {
  3.   ....
  4.   CxImage** ptmp = new CxImage*[info.nNumLayers + 1];
  5.   ....
  6.   } else {
  7.     free(ptmp);
  8.     return false;
  9.   }
  10.   ....
  11. }
  12.  
  13. This suspicious code was found in CxImage project by PVS-Studio static code analyzer.
  14. Warning message is:
  15. V611 The memory was allocated using 'new' operator but was released using the 'free' function. Consider inspecting operation logics behind the 'ptmp' variable.  ximalyr.cpp 50
  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