You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
471 B
12 lines
471 B
7 years ago
|
diff -up openssl-1.0.1e/crypto/evp/encode.c.b64-underflow openssl-1.0.1e/crypto/evp/encode.c
|
||
|
--- openssl-1.0.1e/crypto/evp/encode.c.b64-underflow 2013-02-11 16:26:04.000000000 +0100
|
||
|
+++ openssl-1.0.1e/crypto/evp/encode.c 2015-03-18 18:16:26.452331934 +0100
|
||
|
@@ -324,6 +324,7 @@ int EVP_DecodeUpdate(EVP_ENCODE_CTX *ctx
|
||
|
v=EVP_DecodeBlock(out,d,n);
|
||
|
n=0;
|
||
|
if (v < 0) { rv=0; goto end; }
|
||
|
+ if (eof > v) { rv=-1; goto end; }
|
||
|
ret+=(v-eof);
|
||
|
}
|
||
|
else
|