summaryrefslogtreecommitdiff
path: root/vio
diff options
context:
space:
mode:
authorRaghav Kapoor <raghav.kapoor@oracle.com>2013-08-28 15:17:46 +0530
committerRaghav Kapoor <raghav.kapoor@oracle.com>2013-08-28 15:17:46 +0530
commit881e61db72e568ef0b55bc36d710c650abccfa85 (patch)
treeceffd4a61741383dc1c7e82af9267271a6941cc1 /vio
parentb3f8de5b48a23dd583522ddeecbe22f5ee6676e1 (diff)
downloadmariadb-git-881e61db72e568ef0b55bc36d710c650abccfa85.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 5d31d1dde56..9f689bf7c86 100644
--- a/vio/viosslfactories.c
+++ b/vio/viosslfactories.c
@@ -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"