commit | f13615c5b828aeb8e3d9bf2545c803633d1c684f | [log] [tgz] |
---|---|---|
author | Matt Caswell <matt@openssl.org> | Thu Jun 22 15:25:26 2017 +0100 |
committer | Matt Caswell <matt@openssl.org> | Thu Jun 22 17:00:15 2017 +0100 |
tree | d37e6602a29dff778344b751fbaf69d91bc45b7d | |
parent | f6373823c04794d55dd0b30f5691666b1df5705c [diff] |
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)