Commit 5e6e650d authored by Kurt Cancemi's avatar Kurt Cancemi Committed by Rich Salz
Browse files

Remove pointless free loop in X509_TRUST_cleanup()

parent fa3a0286
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -194,9 +194,6 @@ static void trtable_free(X509_TRUST *p)

void X509_TRUST_cleanup(void)
{
    unsigned int i;
    for (i = 0; i < X509_TRUST_COUNT; i++)
        trtable_free(trstandard + i);
    sk_X509_TRUST_pop_free(trtable, trtable_free);
    trtable = NULL;
}