Advertisement
PVS-StudioWarnings

PVS-Studio warning V595 for glibc

Nov 24th, 2014
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.69 KB | None | 0 0
  1. int __nss_getent_r (....)
  2. {
  3.   ....
  4.   if (res && __res_maybe_init (&_res, 0) == -1)
  5.   {
  6.     *h_errnop = NETDB_INTERNAL;
  7.     *result = NULL;
  8.     return errno;
  9.   }
  10.   ....
  11.   if (status == NSS_STATUS_TRYAGAIN
  12.       && (h_errnop == NULL || *h_errnop == NETDB_INTERNAL)
  13.       && errno == ERANGE)
  14. }
  15.  
  16. This suspicious code was found in glibc project by PVS-Studio static code analyzer.
  17. Warning message is:
  18. V595 The 'h_errnop' pointer was utilized before it was verified against nullptr. Check lines: 146, 172. getnssent_r.c 146
  19.  
  20. 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