Fix use after free null url, CID 1530710

This commit is contained in:
olszomal 2023-01-19 12:56:51 +01:00 committed by Michał Trojnara
parent 506daf84ac
commit 192ff59916

View File

@ -2775,6 +2775,7 @@ static char *get_clrdp_url(X509 *cert)
if (strncmp(url, "http://", 7) == 0) if (strncmp(url, "http://", 7) == 0)
goto out; goto out;
OPENSSL_free(url); OPENSSL_free(url);
url = NULL;
} }
} }
} }