From 81f3a79231bf3f35f4f4d12deec8b58586984ac8 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Mon, 7 Aug 2000 16:55:57 +0000 Subject: [PATCH] (same_name): Invoke xalloc_die instead of printing our own message. --- lib/same.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/same.c b/lib/same.c index dc28c7bda..beb75c44e 100644 --- a/lib/same.c +++ b/lib/same.c @@ -45,6 +45,7 @@ extern int errno; #include "same.h" #include "dirname.h" #include "error.h" +#include "xalloc.h" #if ENABLE_NLS # include @@ -81,7 +82,7 @@ same_name (const char *source, const char *dest) source_dirname = dir_name (source); dest_dirname = dir_name (dest); if (source_dirname == NULL || dest_dirname == NULL) - error (1, 0, _("virtual memory exhausted")); + xalloc_die (); if (stat (source_dirname, &source_dir_stats)) { -- 2.11.0