diff options
author | Raghav Kapoor <raghav.kapoor@oracle.com> | 2013-08-28 15:19:30 +0530 |
---|---|---|
committer | Raghav Kapoor <raghav.kapoor@oracle.com> | 2013-08-28 15:19:30 +0530 |
commit | efb6a1d0704484f804c3c76ff9a912949eb3b172 (patch) | |
tree | 1ba8575f235e3c52f6c9189c7c23c71224e800ef /vio | |
parent | d4b4c8274b43c618523fe2550a433a359b0c3ee7 (diff) | |
parent | c53cad81f8f98e62b86a81203b7cebd54e12f2c6 (diff) | |
download | mariadb-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.c | 2 |
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" |