Advertisement
PVS-StudioWarnings

PVS-Studio warning V568 for Apache

Nov 27th, 2014
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.70 KB | None | 0 0
  1. PSECURITY_ATTRIBUTES GetNullACL(void)
  2. {
  3.   PSECURITY_ATTRIBUTES sa;
  4.  
  5.   sa  = (PSECURITY_ATTRIBUTES) LocalAlloc(
  6.     LPTR, sizeof(SECURITY_ATTRIBUTES));
  7.   sa->nLength = sizeof(sizeof(SECURITY_ATTRIBUTES));
  8.   ...
  9. }
  10.  
  11. This is what should have been written here: sa->nLength = sizeof(SECURITY_ATTRIBUTES);
  12.  
  13. This suspicious code was found in Apache project by PVS-Studio static code analyzer.
  14. Warning message is:
  15. V568 It's odd that the argument of sizeof() operator is the 'sizeof (SECURITY_ATTRIBUTES)' expression. libhttpd util_win32.c 115
  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