- From: Sven Laaks <slaaks@informatik.uni-essen.de>
- Date: Thu, 28 Jun 2001 20:00:45 +0200
- To: Thorsten Rinkenberger <rinkenberger@falkag.de>, "'www-lib@w3.org'" <www-lib@w3.org>
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