summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Objects/unicodeobject.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c
index 11fa1fb5..4475eca 100644
--- a/Objects/unicodeobject.c
+++ b/Objects/unicodeobject.c
@@ -12207,8 +12207,8 @@ PyUnicode_IsIdentifier(PyObject *self)
return 0;
}
- int kind;
- void *data;
+ int kind = 0;
+ void *data = NULL;
wchar_t *wstr;
if (ready) {
kind = PyUnicode_KIND(self);