summaryrefslogtreecommitdiff
path: root/vio
diff options
context:
space:
mode:
authorRaghav Kapoor <raghav.kapoor@oracle.com>2013-08-28 15:19:30 +0530
committerRaghav Kapoor <raghav.kapoor@oracle.com>2013-08-28 15:19:30 +0530
commitfacdeb5ffcbe805c8f7aa5612b3fe6fe2def1d11 (patch)
tree1ba8575f235e3c52f6c9189c7c23c71224e800ef /vio
parent277697b81f5a3856a0fc7c7282810590cf0e5346 (diff)
parent881e61db72e568ef0b55bc36d710c650abccfa85 (diff)
downloadmariadb-git-facdeb5ffcbe805c8f7aa5612b3fe6fe2def1d11.tar.gz
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.
Diffstat (limited to 'vio')
-rw-r--r--vio/viosslfactories.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vio/viosslfactories.c b/vio/viosslfactories.c
index 43975b9e3c4..55cd7ba24bb 100644
--- a/vio/viosslfactories.c
+++ b/vio/viosslfactories.c
@@ -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"