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
Next Next commit
return null if PyTuple_New() fails on syslog.syslog
  • Loading branch information
noamcohen97 committed Jul 26, 2022
commit c95b55c1ba73310972845b3f304f4f8e256d2ae6
2 changes: 2 additions & 0 deletions Modules/syslogmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,8 @@ syslog_syslog(PyObject * self, PyObject * args)
if (openlog_ret == NULL) {
return NULL;
}
} else {
Comment thread
noamcohen97 marked this conversation as resolved.
Outdated
return NULL;
}
}

Expand Down