BUG#17294150-POTENTIAL CRASH DUE TO BUFFER OVERRUN IN SSL

ERROR HANDLING CODE 

BACKGROUND:
There can be a potential crash due to buffer overrun in 
SSL error handling code due to missing comma in
ssl_error_string[] array in viosslfactories.c.

ANALYSIS:
Found by code Inspection.

FIX:
Added the missing comma in SSL error handling code
in ssl_error_string[] array in viosslfactories.c.
This commit is contained in:
Raghav Kapoor 2013-08-28 15:17:46 +05:30
parent 242c82b61a
commit c53cad81f8

View File

@ -80,7 +80,7 @@ ssl_error_string[] =
"No error",
"Unable to get certificate",
"Unable to get private key",
"Private key does not match the certificate public key"
"Private key does not match the certificate public key",
"SSL_CTX_set_default_verify_paths failed",
"Failed to set ciphers to use",
"SSL_CTX_new failed"