Prepare for 0.9.8ze-dev
[oweals/openssl.git] / crypto / asn1 / t_pkey.c
index afb95d67121a0995b2f7cd3ecf29df0d92f9d0e1..bc23f567327146a6e671633310eb0e1b530fed3e 100644 (file)
@@ -208,11 +208,6 @@ int DSA_print(BIO *bp, const DSA *x, int off)
 
        if (x->p)
                buf_len = (size_t)BN_num_bytes(x->p);
-       else
-               {
-               DSAerr(DSA_F_DSA_PRINT,DSA_R_MISSING_PARAMETERS);
-               goto err;
-               }
        if (x->q)
                if (buf_len < (i = (size_t)BN_num_bytes(x->q)))
                        buf_len = i;