We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acb6753 commit ddc0adcCopy full SHA for ddc0adc
Modules/_testcapi/util.h
@@ -25,7 +25,8 @@
25
} while (0)
26
27
/* Marker to check that pointer value was set. */
28
-#define UNINITIALIZED_PTR ((void *)"uninitialized")
+static const char uninitialized[] = "uninitialized";
29
+#define UNINITIALIZED_PTR ((void *)uninitialized)
30
/* Marker to check that Py_ssize_t value was set. */
31
#define UNINITIALIZED_SIZE ((Py_ssize_t)236892191)
32
/* Marker to check that integer value was set. */
0 commit comments