Advertisement
PVS-StudioWarnings

PVS-Studio warning V595 for ReactOS

Nov 21st, 2014
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.61 KB | None | 0 0
  1. static BOOL
  2. LookupSidInformation(....)
  3. {
  4.   ....
  5.   DomainName = &PolicyAccountDomainInfo->DomainName;
  6.   SidNameUse = (PolicyAccountDomainInfo != NULL ?
  7.                 SidTypeGroup : SidTypeUser);
  8.   ....
  9. }
  10.  
  11. This suspicious code was found in ReactOS project by PVS-Studio static code analyzer.
  12. Warning message is:
  13. V595 The 'PolicyAccountDomainInfo' pointer was utilized before it was verified against nullptr. Check lines: 254, 257. sidcache.c 254
  14.  
  15. 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