|
From: Martin R. <ru...@us...> - 2004-08-19 20:51:15
|
Update of /cvsroot/foo/foo/libfoo/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20304 Modified Files: FOOGlobalsManager.m Log Message: fixed bug releated to AUTORELEASE: allocate sinetable and sinexoverxtable correctly Index: FOOGlobalsManager.m =================================================================== RCS file: /cvsroot/foo/foo/libfoo/src/FOOGlobalsManager.m,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** FOOGlobalsManager.m 17 Aug 2004 06:47:13 -0000 1.6 --- FOOGlobalsManager.m 19 Aug 2004 20:51:05 -0000 1.7 *************** *** 73,78 **** { [self recycleAutoreleasePool]; ! _sineXoXHT = [NSMutableDictionary dictionary]; ! _fileHT = [NSMutableDictionary dictionary]; } } --- 73,78 ---- { [self recycleAutoreleasePool]; ! _sineXoXHT = [[NSMutableDictionary alloc] init]; ! _fileHT = [[NSMutableDictionary alloc] init]; } } |