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
commitefb6a1d0704484f804c3c76ff9a912949eb3b172 (patch)
tree1ba8575f235e3c52f6c9189c7c23c71224e800ef /vio
parentd4b4c8274b43c618523fe2550a433a359b0c3ee7 (diff)
parentc53cad81f8f98e62b86a81203b7cebd54e12f2c6 (diff)
downloadmariadb-git-efb6a1d0704484f804c3c76ff9a912949eb3b172.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"