Advertisement
PVS-StudioWarnings

PVS-Studio warning V668 for OGDF

Nov 25th, 2014
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.62 KB | None | 0 0
  1. String::String()
  2. {
  3.   m_pChar = new char[1];
  4.   if (m_pChar == 0) OGDF_THROW(InsufficientMemoryException);
  5.   m_pChar[0] = 0;
  6.   m_length = 0;
  7. }
  8.  
  9. This suspicious code was found in OGDF project by PVS-Studio static code analyzer.
  10. Warning message is:
  11. V668 There is no sense in testing the 'm_pChar' pointer against null, as the memory was allocated using the 'new' operator. The exception will be generated in the case of memory allocation error. ogdf string.cpp 60
  12.  
  13. 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