Commit efb6a1d0 authored by Raghav Kapoor's avatar Raghav Kapoor

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.
parents d4b4c827 c53cad81
......@@ -78,7 +78,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"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment