Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7e447c8

Browse files
committed
Fix compilation warning on Windows
1 parent 0296a56 commit 7e447c8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Modules/_multiprocessing/multiprocessing.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ static struct PyModuleDef multiprocessing_module = {
9999
PyMODINIT_FUNC
100100
PyInit__multiprocessing(void)
101101
{
102-
PyObject *module, *temp, *value;
102+
PyObject *module, *temp, *value = NULL;
103103

104104
/* Initialize module */
105105
module = PyModule_Create(&multiprocessing_module);

0 commit comments

Comments
 (0)