Advertisement
PVS-StudioWarnings

PVS-Studio warning V521 for OpenSSL

Nov 25th, 2014
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.57 KB | None | 0 0
  1. #define SSL3_AL_FATAL 2
  2. #define SSL_AD_DECODE_ERROR 50
  3.  
  4. int ssl3_get_new_session_ticket(SSL *s)
  5. {
  6.   int al;
  7.   ....
  8.   al = SSL3_AL_FATAL, SSL_AD_DECODE_ERROR;
  9.   ....
  10. }
  11.  
  12. This suspicious code was found in OpenSSL project by PVS-Studio static code analyzer.
  13. Warning message is:
  14. V521 Such expressions using the ',' operator are dangerous. Make sure the expression 'al = 2, 50' is correct. s3_clnt.c 1714
  15.  
  16. 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