Thanks to visit codestin.com Credit goes to github.com
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 beb5ec5 commit ed582a2Copy full SHA for ed582a2
1 file changed
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