Clarification.
[openssl.git] / crypto / asn1 / i2d_r_pu.c
index 6d01bfa8b5ec2ede9cffddb1d0f7ac0dd251a695..582b92ee4c19711f7de6df308d71cd145d47f311 100644 (file)
@@ -105,8 +105,14 @@ int i2d_RSAPublicKey(RSA *a, unsigned char **pp)
                bs.length=BN_bn2bin(num[i],bs.data);
                i2d_ASN1_INTEGER(&bs,&p);
                }
-       Free((char *)bs.data);
+       Free(bs.data);
        *pp=p;
        return(t);
        }
+#else /* !NO_RSA */
+
+# if PEDANTIC
+static void *dummy=&dummy;
+# endif
+
 #endif