diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2004-12-30 12:20:28 -0500 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2004-12-30 12:20:28 -0500 |
commit | bed9a2c79bfdde6e4ec89d9d02a5d6e88ae12f79 (patch) | |
tree | dd916bd7c1040bd69a1fe9f9ed1aa98d44ca623d /src/LYLeaks.c | |
parent | b52ca53f448d0f9c01708a6ce2b03be3a71d3993 (diff) | |
download | lynx-snapshots-bed9a2c79bfdde6e4ec89d9d02a5d6e88ae12f79.tar.gz |
snapshot of project "lynx", label v2-8-6dev_9
Diffstat (limited to 'src/LYLeaks.c')
-rw-r--r-- | src/LYLeaks.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/LYLeaks.c b/src/LYLeaks.c index 029b79fa..52c1c70c 100644 --- a/src/LYLeaks.c +++ b/src/LYLeaks.c @@ -564,7 +564,7 @@ void *LYLeakRealloc(void *vp_Alloced, auto AllocationList *ALp_new = typecalloc(AllocationList); if (ALp_new == NULL) { - exit(EXIT_FAILURE); + exit_immediately(EXIT_FAILURE); } /* @@ -580,7 +580,7 @@ void *LYLeakRealloc(void *vp_Alloced, * Add the item to the list. Exit. */ AddToList(ALp_new); - exit(EXIT_FAILURE); + exit_immediately(EXIT_FAILURE); } /* @@ -696,7 +696,7 @@ void LYLeakFree(void *vp_Alloced, AllocationList *ALp_new = typecalloc(AllocationList); if (ALp_new == NULL) { - exit(EXIT_FAILURE); + exit_immediately(EXIT_FAILURE); } /* @@ -874,7 +874,7 @@ static char *LYLeakSAVsprintf(char **dest, auto AllocationList *ALp_new = typecalloc(AllocationList); if (ALp_new == NULL) { - exit(EXIT_FAILURE); + exit_immediately(EXIT_FAILURE); } /* @@ -890,7 +890,7 @@ static char *LYLeakSAVsprintf(char **dest, * Add the item to the list. Exit. */ AddToList(ALp_new); - exit(EXIT_FAILURE); + exit_immediately(EXIT_FAILURE); } old_cp_File = ALp_old->SL_memory.cp_FileName; |