From: Andrew M. <fit...@us...> - 2007-12-07 15:33:29
|
Update of /cvsroot/radmind/radmind In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv4409 Modified Files: transcript.c Log Message: When excluding, only move transcript ahead if we're not at t_eof. Index: transcript.c =================================================================== RCS file: /cvsroot/radmind/radmind/transcript.c,v retrieving revision 1.121 retrieving revision 1.122 diff -C2 -d -r1.121 -r1.122 *** transcript.c 3 Nov 2007 15:25:45 -0000 1.121 --- transcript.c 7 Dec 2007 15:33:26 -0000 1.122 *************** *** 662,666 **** /* move the transcripts ahead */ tran = transcript_select(); ! transcript_parse( tran ); return( 0 ); --- 662,669 ---- /* move the transcripts ahead */ tran = transcript_select(); ! if ( !tran->t_eof ) { ! /* only move ahead if we haven't exhausted transcripts */ ! transcript_parse( tran ); ! } return( 0 ); |