aboutsummaryrefslogtreecommitdiffstats
path: root/apps/req.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2010-03-10 13:48:21 +0000
committerDr. Stephen Henson <steve@openssl.org>2010-03-10 13:48:21 +0000
commit75ece4b5cfb3e2cfc85f9f023a6489aefab70a44 (patch)
treeb53de2708d0fc963d6685bbb9fdef0fbc13552dc /apps/req.c
parent724cca4178603965cc161802818ccd8cb9f2a9e6 (diff)
downloadopenssl-75ece4b5cfb3e2cfc85f9f023a6489aefab70a44.tar.gz
don't leave bogus errors in the queue
Diffstat (limited to 'apps/req.c')
-rw-r--r--apps/req.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/req.c b/apps/req.c
index 65cb19b4ee..820cd18fc7 100644
--- a/apps/req.c
+++ b/apps/req.c
@@ -1336,11 +1336,17 @@ start2: for (;;)
BIO_snprintf(buf,sizeof buf,"%s_min",type);
if (!NCONF_get_number(req_conf,attr_sect,buf, &n_min))
+ {
+ ERR_clear_error();
n_min = -1;
+ }
BIO_snprintf(buf,sizeof buf,"%s_max",type);
if (!NCONF_get_number(req_conf,attr_sect,buf, &n_max))
+ {
+ ERR_clear_error();
n_max = -1;
+ }
if (!add_attribute_object(req,
v->value,def,value,nid,n_min,n_max, chtype))