[Pkg-openssl-changes] r780 - openssl/branches/jessie/debian/patches
Kurt Roeckx
kroeckx at moszumanska.debian.org
Tue May 3 17:11:53 UTC 2016
Author: kroeckx
Date: 2016-05-03 17:11:53 +0000 (Tue, 03 May 2016)
New Revision: 780
Modified:
openssl/branches/jessie/debian/patches/CVE-2016-2105.patch
Log:
Fix patch.
Modified: openssl/branches/jessie/debian/patches/CVE-2016-2105.patch
===================================================================
--- openssl/branches/jessie/debian/patches/CVE-2016-2105.patch 2016-05-03 17:09:08 UTC (rev 779)
+++ openssl/branches/jessie/debian/patches/CVE-2016-2105.patch 2016-05-03 17:11:53 UTC (rev 780)
@@ -36,7 +36,7 @@
if (inl == 0) return;
OPENSSL_assert(ctx->length <= (int)sizeof(ctx->enc_data));
- if ((ctx->num+inl) < ctx->length)
-+ if (ctx->length - ctx->num > inl) {
++ if (ctx->length - ctx->num > inl)
{
memcpy(&(ctx->enc_data[ctx->num]),in,inl);
ctx->num+=inl;
More information about the Pkg-openssl-changes
mailing list