From: <so...@us...> - 2004-03-12 14:09:55
|
Update of /cvsroot/agd/server/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19591 Modified Files: compile.c Log Message: Added initialization of numvars, numfuns to parse_init(). Fixes a crash. Index: compile.c =================================================================== RCS file: /cvsroot/agd/server/src/compile.c,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** compile.c 12 Mar 2004 08:40:10 -0000 1.9 --- compile.c 12 Mar 2004 13:50:23 -0000 1.10 *************** *** 502,505 **** --- 502,508 ---- init_array(&cob->prog->variables); + numlvars = numgvars = 0; + numdfuns = numlfuns = 0; + /*curr_f_check();*/ |