bpo-36051: Fix compiler warning. (GH-18325)

diff --git a/Objects/stringlib/join.h b/Objects/stringlib/join.h
index 4d023ed..8ad598a 100644
--- a/Objects/stringlib/join.h
+++ b/Objects/stringlib/join.h
@@ -20,7 +20,7 @@
     Py_buffer static_buffers[NB_STATIC_BUFFERS];
 #define GIL_THRESHOLD 1048576
     int drop_gil = 1;
-    PyThreadState *save;
+    PyThreadState *save = NULL;
 
     seq = PySequence_Fast(iterable, "can only join an iterable");
     if (seq == NULL) {