Re: Segmentation fault after HTLibTerminate()

At 28.06.2001 18:35 +0100, Thorsten Rinkenberger wrote:
Hi,
inside of my terminate handler my program calls the function 
HTLibTerminate() at last.
After this I get a segmentation fault.

When I set the line HTLibTerminate() in comment my program works 
fine.
But regarding to the libwww documentation HTLibTerminate(); must be 
used.

The terminate handler works like this:
int RequestTerminateHandler(HTRequest* request, HTResponse* response, 
void* param, int status)
{
	HTRequest_delete(request);
	if (--remainingRequests <= 0)
	{
		HTProfile_delete();
		HTLibTerminate();
		exit(status);		
	}
	return HT_OK;
}

Does anyone have a clue?

Thorsten

Hi Thorsten.

the function HTProfile_delete() calls HTLibTerminate(), so you should 
not call it after it. (HTProfil.html)

Sven

Received on Thursday, 28 June 2001 14:01:11 UTC