lst might be NULL here

CID 1130752:  Dereference after null check  (FORWARD_NULL)
This commit is contained in:
Christian Heimes 2013-11-21 23:57:49 +01:00
parent 225877917e
commit 18fc7be80d
1 changed files with 1 additions and 1 deletions

View File

@ -1014,7 +1014,7 @@ _get_aia_uri(X509 *certificate, int nid) {
fail:
AUTHORITY_INFO_ACCESS_free(info);
Py_DECREF(lst);
Py_XDECREF(lst);
return NULL;
}