Advertisement
PVS-StudioWarnings

PVS-Studio warning V668 for TortoiseSVN

Nov 24th, 2014
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.72 KB | None | 0 0
  1. int _tmain(....)
  2. {
  3.   ....
  4.   pBuf = new char[maxlength];
  5.   if (pBuf == NULL)
  6.   {
  7.     _tprintf(_T("Could not allocate enough memory!\n"));
  8.     delete [] wc;
  9.     delete [] dst;
  10.     delete [] src;
  11.     return ERR_ALLOC;
  12.   }
  13.   ....
  14. }
  15.  
  16. This suspicious code was found in TortoiseSVN project by PVS-Studio static code analyzer.
  17. Warning message is:
  18. V668 There is no sense in testing the 'pBuf' pointer against null, as the memory was allocated using the 'new' operator. The exception will be generated in the case of memory allocation error. subwcrev.cpp 912
  19.  
  20. 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