Advertisement
PVS-StudioWarnings

PVS-Studio warning V614 for Firebird

Nov 24th, 2014
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.55 KB | None | 0 0
  1. void blb::move(....)
  2. {
  3.   ....
  4.   const FieldNode* fieldNode;
  5.   if (field)
  6.   {
  7.     if ((fieldNode = ExprNode::as<FieldNode>(field)))
  8.     ....
  9.   }
  10.   ....
  11.   const USHORT id = fieldNode->fieldId;
  12.   ....
  13. }
  14.  
  15. This suspicious code was found in Firebird project by PVS-Studio static code analyzer.
  16. Warning message is:
  17. V614 Potentially uninitialized pointer 'fieldNode' used. blb.cpp 1043
  18.  
  19. 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