From: S?bastien G. <kx...@us...> - 2004-05-03 16:58:47
|
Update of /cvsroot/vba/VisualBoyAdvance/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6437 Modified Files: elf.cpp Log Message: Fixed a missing nullify, which caused crashes while switching from elf to gba files. Index: elf.cpp =================================================================== RCS file: /cvsroot/vba/VisualBoyAdvance/src/elf.cpp,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** elf.cpp 9 Mar 2004 11:03:59 -0000 1.15 --- elf.cpp 3 May 2004 16:58:35 -0000 1.16 *************** *** 2982,2987 **** elfFdeCount = 0; } - ELFcie *cie = elfCies; while(cie) { ELFcie *next = cie->next; --- 2982,2987 ---- elfFdeCount = 0; } + ELFcie *cie = elfCies; while(cie) { ELFcie *next = cie->next; *************** *** 2989,2992 **** --- 2989,2993 ---- cie = next; } + elfCies = NULL; if(elfFileData) { |