Update of /cvsroot/ctypes/ctypes/source
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16808
Modified Files:
Tag: branch_1_0
_ctypes.c
Log Message:
Fix a compiler warning about 'tup' may be uninitialized in _build_result().
Index: _ctypes.c
===================================================================
RCS file: /cvsroot/ctypes/ctypes/source/_ctypes.c,v
retrieving revision 1.226.2.41
retrieving revision 1.226.2.42
diff -C2 -d -r1.226.2.41 -r1.226.2.42
*** _ctypes.c 2 Jan 2006 19:02:52 -0000 1.226.2.41
--- _ctypes.c 4 Jan 2006 18:15:36 -0000 1.226.2.42
***************
*** 2937,2941 ****
{
int i, index, bit;
! PyObject *tup;
if (callargs == NULL)
--- 2937,2941 ----
{
int i, index, bit;
! PyObject *tup = NULL;
if (callargs == NULL)
|