From d7912405bd63fd27189362ee4a11dffa325fff9d Mon Sep 17 00:00:00 2001 From: jdp Date: Fri, 24 Jan 1997 00:07:03 +0000 Subject: Use xmalloc instead of malloc in two places, so that out-of-memory conditions will be detected. Submitted by: Philippe Charnier --- gnu/usr.bin/ld/ld.c | 2 +- gnu/usr.bin/ld/support.c | 2 +- libexec/rtld-aout/support.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/usr.bin/ld/ld.c b/gnu/usr.bin/ld/ld.c index 56e4c9c..900eb68 100644 --- a/gnu/usr.bin/ld/ld.c +++ b/gnu/usr.bin/ld/ld.c @@ -704,7 +704,7 @@ decode_option(swt, arg) return; case 'O': - output_filename = malloc(strlen(arg)+5); + output_filename = xmalloc(strlen(arg)+5); strcpy(output_filename, arg); strcat(output_filename, ".tmp"); real_output_filename = arg; diff --git a/gnu/usr.bin/ld/support.c b/gnu/usr.bin/ld/support.c index d952330..71a84ff 100644 --- a/gnu/usr.bin/ld/support.c +++ b/gnu/usr.bin/ld/support.c @@ -49,7 +49,7 @@ concat(s1, s2, s3) len += strlen(s2); if (s3) len += strlen(s3); - s = malloc(len); + s = xmalloc(len); s[0] = '\0'; if (s1) strcat(s, s1); diff --git a/libexec/rtld-aout/support.c b/libexec/rtld-aout/support.c index d952330..71a84ff 100644 --- a/libexec/rtld-aout/support.c +++ b/libexec/rtld-aout/support.c @@ -49,7 +49,7 @@ concat(s1, s2, s3) len += strlen(s2); if (s3) len += strlen(s3); - s = malloc(len); + s = xmalloc(len); s[0] = '\0'; if (s1) strcat(s, s1); -- cgit v1.1