This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author djmdjm
Recipients djmdjm
Date 2008-10-19.12:10:30
SpamBayes Score 9.3915616e-05
Marked as misclassified No
Message-id <1224418292.85.0.510600214379.issue4146@psf.upfronthosting.co.za>
In-reply-to
Content
Compilation of 3.0rc1 Modules/python.c fails on OpenBSD with the
following error. The attached patch fixes things by explicitly casting
PyMem_Malloc's return value

c++ -pthread -c -fno-strict-aliasing -DNDEBUG -O2 -pipe 
-DTHREAD_STACK_SIZE=0x20000 -fPIC  -I. -IInclude -I./Include 
-DPy_BUILD_CORE -o Modules/python.o ./Modules/python.c
Modules/python.c: In function `int main(int, char**)':
Modules/python.c:20: error: invalid conversion from `void*' to `wchar_t**'
Modules/python.c:22: error: invalid conversion from `void*' to `wchar_t**'
Modules/python.c:57: error: invalid conversion from `void*' to `wchar_t*'
History
Date User Action Args
2008-10-19 12:11:32djmdjmsetrecipients: + djmdjm
2008-10-19 12:11:32djmdjmsetmessageid: <1224418292.85.0.510600214379.issue4146@psf.upfronthosting.co.za>
2008-10-19 12:10:32djmdjmlinkissue4146 messages
2008-10-19 12:10:31djmdjmcreate