]> granicus.if.org Git - python/commitdiff
Trent Mick:
authorGuido van Rossum <guido@python.org>
Wed, 28 Jun 2000 22:26:21 +0000 (22:26 +0000)
committerGuido van Rossum <guido@python.org>
Wed, 28 Jun 2000 22:26:21 +0000 (22:26 +0000)
Fix warnings on 64-bit build build of signalmodule.c

- Though I know that SIG_DFL and SIG_IGN are just small constants,
there are cast to function pointers so the appropriate Python call is
PyLong_FromVoidPtr so that the pointer value cannot overflow on Win64
where sizeof(long) < sizeof(void*).

Modules/signalmodule.c

index 26bb94050e75b7dfc8ed3dea194208c9a6ef55d4..88f2b9c89cbdcd6b875a54ece4b34e51a7203102 100644 (file)
@@ -356,11 +356,11 @@ initsignal()
        /* Add some symbolic constants to the module */
        d = PyModule_GetDict(m);
 
-       x = DefaultHandler = PyInt_FromLong((long)SIG_DFL);
+       x = DefaultHandler = PyLong_FromVoidPtr(SIG_DFL);
         if (!x || PyDict_SetItemString(d, "SIG_DFL", x) < 0)
                 goto finally;
 
-       x = IgnoreHandler = PyInt_FromLong((long)SIG_IGN);
+       x = IgnoreHandler = PyLong_FromVoidPtr(SIG_IGN);
         if (!x || PyDict_SetItemString(d, "SIG_IGN", x) < 0)
                 goto finally;