mirror of
https://github.com/MariaDB/server.git
synced 2026-05-10 00:54:30 +02:00
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:
parent
242c82b61a
commit
c53cad81f8
1 changed files with 1 additions and 1 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue