HTEndLoop flag not reset.

Henrik,

There are several places within the HTEventList_loop function that perform a
return without resetting the HTEndLoop flag back to zero. I believe that in the
last revision you added the instruction at the end of the function that reset it
to zero but this is not the only exit point from this function. It appears there
are six other "return" statements within the HTEventList_loop function that need
should be changed from:
	return status;

to:
	/* Reset HTEndLoop in case we want to start again */
	HTEndLoop = 0;
	return status;

Thanks,
Michael

Received on Wednesday, 9 June 1999 13:41:07 UTC