Commit 881e61db 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.
parent b3f8de5b
...@@ -80,7 +80,7 @@ ssl_error_string[] = ...@@ -80,7 +80,7 @@ ssl_error_string[] =
"No error", "No error",
"Unable to get certificate", "Unable to get certificate",
"Unable to get private key", "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", "SSL_CTX_set_default_verify_paths failed",
"Failed to set ciphers to use", "Failed to set ciphers to use",
"SSL_CTX_new failed" "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