Skip to content

Commit 6985b4b

Browse files
[3.12] gh-129345: null check for indent syslogmodule (GH-129348) (#129443)
gh-129345: null check for indent syslogmodule (GH-129348) (cherry picked from commit 25cf79a) Co-authored-by: Burkov Egor <[email protected]>
1 parent a764546 commit 6985b4b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix null pointer dereference in :func:`syslog.openlog` when an audit hook raises an exception.

Modules/syslogmodule.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ syslog_openlog_impl(PyObject *module, PyObject *ident, long logopt,
170170
}
171171
}
172172
if (PySys_Audit("syslog.openlog", "Oll", ident ? ident : Py_None, logopt, facility) < 0) {
173-
Py_DECREF(ident);
173+
Py_XDECREF(ident);
174174
return NULL;
175175
}
176176

0 commit comments

Comments
 (0)