diff options
author | tb <> | 2023-08-17 09:13:01 +0000 |
---|---|---|
committer | tb <> | 2023-08-17 09:13:01 +0000 |
commit | 46b81a642e3087476fa3ad74e16750d722addf77 (patch) | |
tree | 5255d051ca19caeaa976cc59d09f34a18a21bec2 /src/lib | |
parent | cd5112ed9bc9b4dd6d2bde1d837c9d2278d87b3a (diff) | |
download | openbsd-46b81a642e3087476fa3ad74e16750d722addf77.tar.gz openbsd-46b81a642e3087476fa3ad74e16750d722addf77.tar.bz2 openbsd-46b81a642e3087476fa3ad74e16750d722addf77.zip |
Avoid memcmp(NULL, x, 0) in OBJ_cmp()
If a->length is 0, either a->data or b->data could be NULL and memcmp()
will rely on undefined behavior to compare them as equal. So avoid this
comparison in the first place.
ok jsing
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libcrypto/objects/obj_lib.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/lib/libcrypto/objects/obj_lib.c b/src/lib/libcrypto/objects/obj_lib.c index 83575c16c9..45062dbd4c 100644 --- a/src/lib/libcrypto/objects/obj_lib.c +++ b/src/lib/libcrypto/objects/obj_lib.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: obj_lib.c,v 1.18 2023/07/08 12:27:51 beck Exp $ */ | 1 | /* $OpenBSD: obj_lib.c,v 1.19 2023/08/17 09:13:01 tb Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -124,11 +124,12 @@ LCRYPTO_ALIAS(OBJ_dup); | |||
124 | int | 124 | int |
125 | OBJ_cmp(const ASN1_OBJECT *a, const ASN1_OBJECT *b) | 125 | OBJ_cmp(const ASN1_OBJECT *a, const ASN1_OBJECT *b) |
126 | { | 126 | { |
127 | int ret; | 127 | int cmp; |
128 | 128 | ||
129 | ret = (a->length - b->length); | 129 | if ((cmp = a->length - b->length) != 0) |
130 | if (ret) | 130 | return cmp; |
131 | return (ret); | 131 | if (a->length == 0) |
132 | return (memcmp(a->data, b->data, a->length)); | 132 | return 0; |
133 | return memcmp(a->data, b->data, a->length); | ||
133 | } | 134 | } |
134 | LCRYPTO_ALIAS(OBJ_cmp); | 135 | LCRYPTO_ALIAS(OBJ_cmp); |