Segmentation fault after HTLibTerminate()

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

Received on Thursday, 28 June 2001 12:36:30 UTC