Fix OBJ_create() to tolerate a NULL sn and ln
authorMatt Caswell <matt@openssl.org>
Thu, 22 Jun 2017 14:25:26 +0000 (15:25 +0100)
committerMatt Caswell <matt@openssl.org>
Thu, 22 Jun 2017 16:00:44 +0000 (17:00 +0100)
commitd9ac82a28d10c05d7b491324596a9d8ce7a9319e
tree1b03a17b8fdd21b3b4f9d7bbf36d0754b33eb719
parentca9e4d7a36c8906c30a7daf17d6239d42f761ddf
Fix OBJ_create() to tolerate a NULL sn and ln

In 1.0.2 and before OBJ_create() allowed the sn or ln parameter to be NULL.
Commit 52832e47 changed that so that it crashed if they were NULL.

This was causing problems with the built-in config oid module. If a long
name was provided OBJ_create() is initially called with a NULL ln and
therefore causes a crash.

Fixes #3733

Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3753)

(cherry picked from commit f13615c5b828aeb8e3d9bf2545c803633d1c684f)
crypto/objects/obj_dat.c