Advertisement
PVS-StudioWarnings

PVS-Studio warning V610 for PostgreSQL

Nov 27th, 2014
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.54 KB | None | 0 0
  1. static char *
  2. inet_cidr_ntop_ipv6(const u_char *src, int bits,
  3.                     char *dst, size_t size)
  4. {
  5.   ....
  6.   m = ~0 << (8 - b);
  7.   ....
  8. }
  9.  
  10. This suspicious code was found in PostgreSQL project by PVS-Studio static code analyzer.
  11. Warning message is:
  12. V610 Undefined behavior. Check the shift operator '<<. The left operand '~0' is negative. postgres inet_cidr_ntop.c 206
  13.  
  14. 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