Advertisement
PVS-StudioWarnings

PVS-Studio warning V595 for Firebird

Nov 10th, 2014
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.62 KB | None | 0 0
  1. int CCH_down_grade_dbb(void* ast_object)
  2. {
  3.   ....
  4.   SyncLockGuard bcbSync(&bcb->bcb_syncObject, SYNC_EXCLUSIVE,
  5.                         "CCH_down_grade_dbb");
  6.   bcb->bcb_flags &= ~BCB_exclusive;
  7.  
  8.   if (bcb && bcb->bcb_count)
  9.   ....
  10. }
  11.  
  12. This suspicious code was found in Firebird project by PVS-Studio static code analyzer.
  13. Warning message is:
  14. V595 The 'bcb' pointer was utilized before it was verified against nullptr. Check lines: 271, 274. cch.cpp 271
  15.  
  16. 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