diff options
| author | Dirk Meyer <dinoex@FreeBSD.org> | 2002-08-06 05:46:17 +0000 |
|---|---|---|
| committer | Dirk Meyer <dinoex@FreeBSD.org> | 2002-08-06 05:46:17 +0000 |
| commit | 6120fd518585195159b5791ed4139f7c279d9c62 (patch) | |
| tree | b9013026317cce8a7ac20ab5b02a05c9762614df /security/openssl-beta/files | |
| parent | Fix the critical bug in capability negotiation. (diff) | |
Sync Bugfix from CURRENT
Notes
Notes:
svn path=/head/; revision=64086
Diffstat (limited to 'security/openssl-beta/files')
| -rw-r--r-- | security/openssl-beta/files/patch-asn1_lib.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/security/openssl-beta/files/patch-asn1_lib.c b/security/openssl-beta/files/patch-asn1_lib.c new file mode 100644 index 000000000000..ec5b10e43ee1 --- /dev/null +++ b/security/openssl-beta/files/patch-asn1_lib.c @@ -0,0 +1,11 @@ +--- crypto/asn1/asn1_lib.c.orig Tue Jul 30 12:18:29 2002 ++++ crypto/asn1/asn1_lib.c Mon Aug 5 18:25:17 2002 +@@ -124,7 +124,7 @@ + (int)(omax+ *pp)); + + #endif +- if (*plength > (omax - (*pp - p))) ++ if (*plength > (omax - (p - *pp))) + { + ASN1err(ASN1_F_ASN1_GET_OBJECT,ASN1_R_TOO_LONG); + /* Set this so that even if things are not long enough |
