From 33d5279258825463ffd51d7b810340bb56f11083 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Tue, 17 Feb 2004 05:47:01 +0000 Subject: Update. * stdlib/canonicalize.c (__realpath): Remove unnecessary copy operations. --- stdlib/canonicalize.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'stdlib/canonicalize.c') diff --git a/stdlib/canonicalize.c b/stdlib/canonicalize.c index 5c55c5dbd1..0947c67dd2 100644 --- a/stdlib/canonicalize.c +++ b/stdlib/canonicalize.c @@ -1,5 +1,5 @@ /* Return the canonical absolute name of a given file. - Copyright (C) 1996-2001, 2002 Free Software Foundation, Inc. + Copyright (C) 1996-2001, 2002, 2004 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -17,6 +17,7 @@ Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ +#include #include #include #include @@ -204,12 +205,12 @@ __realpath (const char *name, char *resolved) --dest; *dest = '\0'; - return resolved ? memcpy (resolved, rpath, dest - rpath + 1) : rpath; + assert (resolved == NULL || resolved == rpath); + return resolved ?: rpath; error: - if (resolved) - strcpy (resolved, rpath); - else + assert (resolved == NULL || resolved == rpath); + if (resolved == NULL) free (rpath); return NULL; } -- cgit v1.2.3