shutting down request after timer interrupt

What is a proper way to kill a request after a timer interrupt?
If I use HTNet_killAll() then I get Illegal instruction at line
314 in HTFile.c (this particular request is to a local file):

    if (input) {
	if (status == HT_INTERRUPTED)
-->	    (*input->isa->abort)(input, NULL);

This is because (*input->isa->abort) is garbage at this point.
The check for input !=NULL or even ((input->isa) && (input->isa->abort))
doesn't help, because the input stream pointer is non-null, but it points
to garbage.



Thanks,
Michael Kifer
kifer@cs.sunysb.edu 

Received on Monday, 10 April 2000 12:44:25 UTC