From: Jim Meyering Date: Wed, 12 Nov 1997 16:11:17 +0000 (+0000) Subject: return memcpy result directly X-Git-Tag: cvs-readonly~8067 X-Git-Url: http://erislabs.net/gitweb/?a=commitdiff_plain;h=bfeca902c01d658b0bd888a94ac0fef49e53f6fc;p=gnulib.git return memcpy result directly --- diff --git a/lib/strndup.c b/lib/strndup.c index a23060e38..f4b1f7ac1 100644 --- a/lib/strndup.c +++ b/lib/strndup.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1996 Free Software Foundation, Inc. +/* Copyright (C) 1996, 1997 Free Software Foundation, Inc. NOTE: The canonical source of this file is maintained with the GNU C Library. Bugs can be reported to bug-glibc@prep.ai.mit.edu. @@ -42,8 +42,6 @@ strndup (s, n) if (new == NULL) return NULL; - memcpy (new, s, n); new[n] = '\0'; - - return new; + return memcpy (new, s, n); }