Commit c130c0fe authored by Matt Caswell's avatar Matt Caswell
Browse files

Free the correct type in OBJ_add_object()



We should be using ASN1_OBJECT_free() not OPENSSL_free().

Fixes #5568

Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5597)
parent 61cd0c94
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -213,7 +213,7 @@ int OBJ_add_object(const ASN1_OBJECT *obj)
 err:
    for (i = ADDED_DATA; i <= ADDED_NID; i++)
        OPENSSL_free(ao[i]);
    OPENSSL_free(o);
    ASN1_OBJECT_free(o);
    return NID_undef;
}