Rename *_realloc_clean to *_clear_realloc
[openssl.git] / crypto / asn1 / a_bitstr.c
index 5f7ae6a373420b2946dd22f63bb1816b65cdb9eb..b4e71fd0f746704caa94c84b09a2f019f54ce144 100644 (file)
@@ -204,7 +204,7 @@ int ASN1_BIT_STRING_set_bit(ASN1_BIT_STRING *a, int n, int value)
     if ((a->length < (w + 1)) || (a->data == NULL)) {
         if (!value)
             return (1);         /* Don't need to set */
-        c = OPENSSL_realloc_clean(a->data, a->length, w + 1);
+        c = OPENSSL_clear_realloc(a->data, a->length, w + 1);
         if (c == NULL) {
             ASN1err(ASN1_F_ASN1_BIT_STRING_SET_BIT, ERR_R_MALLOC_FAILURE);
             return 0;