Advertisement
PVS-StudioWarnings

PVS-Studio warning V519 for IPP Samples

Nov 27th, 2014
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.53 KB | None | 0 0
  1. static
  2. IPLStatus ownRemap8u_Pixel(....) {
  3.   ...
  4.   saveXMask    = xMap->maskROI;
  5.  
  6.   saveYMask    = yMap->maskROI;
  7.   saveYMask    = NULL;
  8.   ...
  9. }
  10.  
  11. This suspicious code was found in IPP Samples project by PVS-Studio static code analyzer.
  12. Warning message is:
  13. V519 The 'saveXMask' object is assigned values twice successively. Perhaps this is a mistake. ipl iplremap.c 36
  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