Advertisement
PVS-StudioWarnings

PVS-Studio warning V640 for DDKSamples

Nov 26th, 2014
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.66 KB | None | 0 0
  1. #define MP_FREE_MEMORY(_Memory) \
  2.   MpFreeMemory(_Memory); _Memory = NULL;
  3.  
  4. NDIS_STATUS
  5. StaStartScan(....)
  6. {
  7.   ....
  8.   if (pExternalScanRequest != NULL)
  9.     MP_FREE_MEMORY(pExternalScanRequest);
  10.   ....
  11. }
  12.  
  13. This suspicious code was found in DDKSamples project by PVS-Studio static code analyzer.
  14. Warning message is:
  15. V640 The code's operational logic does not correspond with its formatting. The second statement will always be executed. It is possible that curly brackets are missing. st_scan.c 564
  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