|
From: Stephen J. <spj...@us...> - 2002-11-09 17:38:07
|
Update of /cvsroot/liblookdb/liblookdb/looktypes
In directory usw-pr-cvs1:/tmp/cvs-serv30468/looktypes
Modified Files:
t_list.h
Log Message:
Fix segfault revealed by Redhat 8 / GCC 3.2 build.
Index: t_list.h
===================================================================
RCS file: /cvsroot/liblookdb/liblookdb/looktypes/t_list.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** t_list.h 4 Jul 2001 15:53:22 -0000 1.6
--- t_list.h 9 Nov 2002 17:38:04 -0000 1.7
***************
*** 515,519 ****
while( first != last )
{
! first = erase( first );
}
return first;
--- 515,519 ----
while( first != last )
{
! erase( first++ );
}
return first;
|