X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=lib%2Fconcatpath.c;h=a6d4173562d1e29f64c2ab113b7aa192e93b2407;hb=4ad44dd748d5da39555cdf305568280d69a23354;hp=e614e3d2f7d637ce084c174275852a8930cf6480;hpb=e0576a6aeae094c5fc5a95fae6bae82eabdce5bb;p=gnulib.git diff --git a/lib/concatpath.c b/lib/concatpath.c index e614e3d2f..a6d417356 100644 --- a/lib/concatpath.c +++ b/lib/concatpath.c @@ -1,5 +1,5 @@ /* Construct a full pathname from a directory and a filename. - Copyright (C) 2001-2004 Free Software Foundation, Inc. + Copyright (C) 2001-2004, 2006, 2007 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the @@ -13,14 +13,12 @@ You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ /* Written by Bruno Haible . */ -#ifdef HAVE_CONFIG_H -# include -#endif +#include /* Specification. */ #include "pathname.h" @@ -28,7 +26,6 @@ #include #include "xalloc.h" -#include "stpcpy.h" /* Concatenate a directory pathname, a relative pathname and an optional suffix. The directory may end with the directory separator. The second @@ -44,9 +41,10 @@ concatenated_pathname (const char *directory, const char *filename, if (strcmp (directory, ".") == 0) { /* No need to prepend the directory. */ - result = (char *) xmalloc (strlen (filename) - + (suffix != NULL ? strlen (suffix) : 0) - + 1); + result = XNMALLOC (strlen (filename) + + (suffix != NULL ? strlen (suffix) : 0) + + 1, + char); p = result; } else @@ -55,10 +53,11 @@ concatenated_pathname (const char *directory, const char *filename, int need_slash = (directory_len > FILE_SYSTEM_PREFIX_LEN (directory) && !ISSLASH (directory[directory_len - 1])); - result = (char *) xmalloc (directory_len + need_slash - + strlen (filename) - + (suffix != NULL ? strlen (suffix) : 0) - + 1); + result = XNMALLOC (directory_len + need_slash + + strlen (filename) + + (suffix != NULL ? strlen (suffix) : 0) + + 1, + char); memcpy (result, directory, directory_len); p = result + directory_len; if (need_slash)