From: <he...@us...> - 2003-08-07 05:39:06
|
Update of /cvsroot/binaryphp/binaryphp/functions/mysql In directory sc8-pr-cvs1:/tmp/cvs-serv31764/functions/mysql Modified Files: mysql_fetch_array.cpp Log Message: Segfault fixed in mysql_fetch_array(), and argument list fixed in array(). Index: mysql_fetch_array.cpp =================================================================== RCS file: /cvsroot/binaryphp/binaryphp/functions/mysql/mysql_fetch_array.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** mysql_fetch_array.cpp 7 Aug 2003 01:37:53 -0000 1.2 --- mysql_fetch_array.cpp 7 Aug 2003 05:39:03 -0000 1.3 *************** *** 19,23 **** ret[fields[i].name] = row[i]; } - free(fields); return ret; } --- 19,22 ---- |