diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2025-10-18 19:06:52 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2025-10-18 19:06:52 +0200 |
commit | 27dae84ed92f1ef0300263091972338d12e78348 (patch) | |
tree | 7c52931f474fafb8a4bd4fd15ca3461c77cdecc2 /tests/xmalloc.c | |
parent | 4682deeb62247d34de87f8e777f99e2d337fd377 (diff) |
New upstream version 1.4.1upstream/1.4.1upstream
Diffstat (limited to 'tests/xmalloc.c')
-rw-r--r-- | tests/xmalloc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/xmalloc.c b/tests/xmalloc.c index 5befdab7..8a715807 100644 --- a/tests/xmalloc.c +++ b/tests/xmalloc.c @@ -1,6 +1,6 @@ /* xmalloc.c -- malloc with out of memory checking - Copyright (C) 1990-2000, 2002-2006, 2008-2024 Free Software Foundation, Inc. + Copyright (C) 1990-2000, 2002-2006, 2008-2025 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -64,7 +64,7 @@ void * xrealloc (void *p, size_t s) { void *r = realloc (p, s); - if (!r && (!p || s)) + if (!r) xalloc_die (); return r; } @@ -82,7 +82,7 @@ void * xreallocarray (void *p, size_t n, size_t s) { void *r = reallocarray (p, n, s); - if (!r && (!p || (n && s))) + if (!r) xalloc_die (); return r; } |