Update of /cvsroot/pure-data/externals/grill/pool/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13255/source
Modified Files: pool.cpp Log Message: fixed double-free on clearing values and dirs reintroduced missing help message minor cleanups fixed bug in XML saving of nested folders
Index: pool.cpp =================================================================== RCS file: /cvsroot/pure-data/externals/grill/pool/source/pool.cpp,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** pool.cpp 14 Dec 2005 01:53:02 -0000 1.21 --- pool.cpp 14 Mar 2006 17:14:53 -0000 1.22 *************** *** 66,70 **** if(data) delete data;
- // if(nxt) delete nxt; FLEXT_ASSERT(nxt == NULL); } --- 66,69 ---- *************** *** 96,100 **** Reset(false); - // if(nxt) delete nxt; FLEXT_ASSERT(nxt == NULL); } --- 95,98 ---- *************** *** 984,988 **** indent(os,ind+i+1); os << "<key>"; ! WriteAtom(os,dir[i]); os << "</key>" << endl; } --- 982,986 ---- indent(os,ind+i+1); os << "<key>"; ! WriteAtom(os,dir[ind+i]); os << "</key>" << endl; }