Advertisement
PVS-StudioWarnings

PVS-Studio warning V595 for Firefox

Nov 26th, 2014
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.55 KB | None | 0 0
  1. nsresult
  2. nsFrameSelection::MoveCaret(....)
  3. {
  4.   ...
  5.   mShell->FlushPendingNotifications(Flush_Layout);
  6.  
  7.   if (!mShell) {
  8.     return NS_OK;
  9.   }
  10.   ...
  11. }
  12.  
  13. This suspicious code was found in Firefox project by PVS-Studio static code analyzer.
  14. Warning message is:
  15. V595 The 'mShell' pointer was utilized before it was verified against nullptr. Check lines: 1107, 1109. nsselection.cpp 1107
  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