diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2016-08-05 17:25:52 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2016-08-05 17:25:52 +0000 |
commit | 037232ae422ad2e42ace830d4ff83a7ec3b89621 (patch) | |
tree | 5e9b7dafe9d2d989928844118900b6191da4bd49 /lib | |
parent | 384fb48f7f1a3eb4a55261d8b2ec0f5a2de53ec1 (diff) |
Do not *printf %s NULL
ok bcook
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libssl/src/crypto/conf/conf_lib.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libssl/src/crypto/conf/conf_lib.c b/lib/libssl/src/crypto/conf/conf_lib.c index a7c8be7c0d8..c7e026e7257 100644 --- a/lib/libssl/src/crypto/conf/conf_lib.c +++ b/lib/libssl/src/crypto/conf/conf_lib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf_lib.c,v 1.13 2015/02/07 13:19:15 doug Exp $ */ +/* $OpenBSD: conf_lib.c,v 1.14 2016/08/05 17:25:51 deraadt Exp $ */ /* Written by Richard Levitte (richard@levitte.org) for the OpenSSL * project 2000. */ @@ -321,7 +321,8 @@ NCONF_get_string(const CONF *conf, const char *group, const char *name) return NULL; } CONFerr(CONF_F_NCONF_GET_STRING, CONF_R_NO_VALUE); - ERR_asprintf_error_data("group=%s name=%s", group, name); + ERR_asprintf_error_data("group=%s name=%s", + group ? group : "", name); return NULL; } |