Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update Modules/syslogmodule.c
Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@protonmail.com>
  • Loading branch information
noamcohen97 and erlend-aasland authored Jul 26, 2022
commit 5a097a6d62282cc96a1a4687453bc8ca1305d9e1
3 changes: 2 additions & 1 deletion Modules/syslogmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,8 @@ syslog_syslog(PyObject * self, PyObject * args)
return NULL;
}
Py_DECREF(openlog_ret);
} else {
}
else {
return NULL;
}
}
Expand Down