X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fclean-temp.c;h=283d8af236c52fa18e53286f4407b85db97aea25;hb=cb9819cbb9261bd50c3466cf0a4cd873f0d7ebd7;hp=c840636108d368daee86270bb05d82560def32ca;hpb=e062ed7a99ca4e88a93db19362800a3326a462ea;p=gnulib.git diff --git a/lib/clean-temp.c b/lib/clean-temp.c index c84063610..283d8af23 100644 --- a/lib/clean-temp.c +++ b/lib/clean-temp.c @@ -2,10 +2,10 @@ Copyright (C) 2001, 2003, 2006-2007 Free Software Foundation, Inc. Written by Bruno Haible , 2006. - This program is free software; you can redistribute it and/or modify + 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 Free Software Foundation; either version 2, or (at your option) - any later version. + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -13,8 +13,7 @@ GNU General Public License for more details. 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ + along with this program. If not, see . */ #include @@ -40,7 +39,7 @@ #include "pathmax.h" #include "tmpdir.h" #include "xalloc.h" -#include "xallocsa.h" +#include "xmalloca.h" #include "gl_linkedhash_list.h" #include "gettext.h" #if GNULIB_FWRITEERROR @@ -327,7 +326,7 @@ create_temp_dir (const char *prefix, const char *parentdir, false); /* Create the temporary directory. */ - xtemplate = (char *) xallocsa (PATH_MAX); + xtemplate = (char *) xmalloca (PATH_MAX); if (path_search (xtemplate, PATH_MAX, parentdir, prefix, parentdir == NULL)) { error (0, errno, @@ -354,11 +353,11 @@ create_temp_dir (const char *prefix, const char *parentdir, block because then the cleanup handler would not remove the directory if xstrdup fails. */ tmpdir->dirname = xstrdup (tmpdirname); - freesa (xtemplate); + freea (xtemplate); return (struct temp_dir *) tmpdir; quit: - freesa (xtemplate); + freea (xtemplate); return NULL; } @@ -665,14 +664,14 @@ fopen_temp (const char *file_name, const char *mode) if (supports_delete_on_close ()) { size_t mode_len = strlen (mode); - char *augmented_mode = (char *) xallocsa (mode_len + 2); + char *augmented_mode = (char *) xmalloca (mode_len + 2); memcpy (augmented_mode, mode, mode_len); memcpy (augmented_mode + mode_len, "D", 2); fp = fopen (file_name, augmented_mode); saved_errno = errno; - freesa (augmented_mode); + freea (augmented_mode); } else #endif