summaryrefslogtreecommitdiffstats
path: root/crypto/objects
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-04-11 22:13:58 +0000
committerRichard Levitte <levitte@openssl.org>2002-04-11 22:13:58 +0000
commit083100e2abe0f7b6cef91a4a5e267037af4e1904 (patch)
tree57a4be625421333682d5437a5b0bc1feefda65bd /crypto/objects
parent241d2ba1da4ab3eb334a72c269725c060986e204 (diff)
Check error code from a2d_ASN1_OBJECT().
Diffstat (limited to 'crypto/objects')
-rw-r--r--crypto/objects/obj_dat.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/objects/obj_dat.c b/crypto/objects/obj_dat.c
index 8094c7df95..cf21ea3377 100644
--- a/crypto/objects/obj_dat.c
+++ b/crypto/objects/obj_dat.c
@@ -654,6 +654,8 @@ int OBJ_create(const char *oid, const char *sn, const char *ln)
return(0);
}
i=a2d_ASN1_OBJECT(buf,i,oid,-1);
+ if (i == 0)
+ goto err;
op=(ASN1_OBJECT *)ASN1_OBJECT_create(OBJ_new_nid(1),buf,i,sn,ln);
if (op == NULL)
goto err;