diff options
Diffstat (limited to 'Build/source/texk/kpathsea/xrealloc.c')
-rw-r--r-- | Build/source/texk/kpathsea/xrealloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/texk/kpathsea/xrealloc.c b/Build/source/texk/kpathsea/xrealloc.c index 051b4834dbd..7561d72791d 100644 --- a/Build/source/texk/kpathsea/xrealloc.c +++ b/Build/source/texk/kpathsea/xrealloc.c @@ -24,7 +24,7 @@ void * xrealloc (void *old_ptr, size_t size) { void *new_mem; - + if (old_ptr == NULL) { new_mem = xmalloc(size); } else { @@ -40,6 +40,6 @@ xrealloc (void *old_ptr, size_t size) exit(EXIT_FAILURE); } } - + return new_mem; } |