Advertisement
PVS-StudioWarnings

PVS-Studio warning V614 for OGDF

Nov 10th, 2014
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.60 KB | None | 0 0
  1. bool OgmlParser::buildAttributedClusterGraph(....)
  2. {
  3.   ....
  4.   XmlTagObject* layout;
  5.   if (structure->m_pBrother != NULL) {
  6.     layout = structure->m_pBrother;
  7.   }
  8.   if ((layout) &&
  9.       (layout->getName() == Ogml::s_tagNames[Ogml::t_layout]))
  10.   ....
  11. }
  12.  
  13. This suspicious code was found in OGDF project by PVS-Studio static code analyzer.
  14. Warning message is:
  15. V614 Potentially uninitialized pointer 'layout' used. ogdf ogmlparser.cpp 2337
  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