summaryrefslogtreecommitdiffstats
path: root/Modules/clinic/overlapped.c.h
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/clinic/overlapped.c.h')
-rw-r--r--Modules/clinic/overlapped.c.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/clinic/overlapped.c.h b/Modules/clinic/overlapped.c.h
index cc0c74c..e8c2fe5 100644
--- a/Modules/clinic/overlapped.c.h
+++ b/Modules/clinic/overlapped.c.h
@@ -282,7 +282,7 @@ _overlapped_CreateEvent(PyObject *module, PyObject *const *args, Py_ssize_t narg
PyObject *EventAttributes;
BOOL ManualReset;
BOOL InitialState;
- const Py_UNICODE *Name;
+ const Py_UNICODE *Name = NULL;
if (!_PyArg_CheckPositional("CreateEvent", nargs, 4, 4)) {
goto exit;
@@ -1047,7 +1047,7 @@ static PyObject *
_overlapped_Overlapped_ConnectPipe(OverlappedObject *self, PyObject *arg)
{
PyObject *return_value = NULL;
- const Py_UNICODE *Address;
+ const Py_UNICODE *Address = NULL;
if (!PyUnicode_Check(arg)) {
_PyArg_BadArgument("ConnectPipe", "argument", "str", arg);
@@ -1254,4 +1254,4 @@ exit:
return return_value;
}
-/*[clinic end generated code: output=ed7ca699b5cf6260 input=a9049054013a1b77]*/
+/*[clinic end generated code: output=e0f866222bd5873b input=a9049054013a1b77]*/