|
From: David B. <dav...@us...> - 2004-11-23 02:36:21
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv572 Modified Files: Tag: sidewinder-branch langpython.c Log Message: removed a call to stringsize in favor of sizeof(bigstring) Index: langpython.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/langpython.c,v retrieving revision 1.2.4.5 retrieving revision 1.2.4.6 diff -C2 -d -r1.2.4.5 -r1.2.4.6 *** langpython.c 23 Nov 2004 02:33:55 -0000 1.2.4.5 --- langpython.c 23 Nov 2004 02:36:11 -0000 1.2.4.6 *************** *** 736,741 **** Table_keysCallback(hdlhashnode node, ptrvoid refcon) { PyObject *keyList = (PyObject *)refcon; ! ! char name[stringsize((**node).hashkey)]; copyptocstring((**node).hashkey, name); --- 736,741 ---- Table_keysCallback(hdlhashnode node, ptrvoid refcon) { PyObject *keyList = (PyObject *)refcon; ! char name[sizeof(bigstring)]; ! copyptocstring((**node).hashkey, name); |