From: Christian Heimes Date: Thu, 21 Nov 2013 22:57:49 +0000 (+0100) Subject: lst might be NULL here X-Git-Tag: v3.4.0b1~141 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=18fc7be80d77f68a0e7ab54e6c222a4b7a3bc774;p=thirdparty%2FPython%2Fcpython.git lst might be NULL here CID 1130752: Dereference after null check (FORWARD_NULL) --- diff --git a/Modules/_ssl.c b/Modules/_ssl.c index 634eea568cf7..d2f0d921ee58 100644 --- a/Modules/_ssl.c +++ b/Modules/_ssl.c @@ -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; }