X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=libiberty%2Fchoose-temp.c;h=b1c2e5b66ba5f76af7816a7ef929c0480c942ba8;hb=36fc76aebb7315571094d66b35e13d69d512fbe2;hp=5c2c6140dbf52bb4fcd04be5380f426ebb19fa37;hpb=5d852400e9653036531a2c2db5cce7433d936469;p=deliverable%2Fbinutils-gdb.git diff --git a/libiberty/choose-temp.c b/libiberty/choose-temp.c index 5c2c6140db..b1c2e5b66b 100644 --- a/libiberty/choose-temp.c +++ b/libiberty/choose-temp.c @@ -14,8 +14,8 @@ Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with libiberty; see the file COPYING.LIB. If not, -write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, -Boston, MA 02111-1307, USA. */ +write to the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor, +Boston, MA 02110-1301, USA. */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -30,7 +30,7 @@ Boston, MA 02111-1307, USA. */ #endif #include "libiberty.h" -extern char *choose_tmpdir PARAMS ((void)); +extern char *choose_tmpdir (void); /* Name of temporary file. mktemp requires 6 trailing X's. */ @@ -46,7 +46,7 @@ find one. The current directory is chosen if all else fails so the program is exited if a temporary directory can't be found (@code{mktemp} fails). The buffer for the result is obtained with @code{xmalloc}. -This function is provided for backwards compatability only. Its use is +This function is provided for backwards compatibility only. Its use is not recommended. @end deftypefn @@ -54,19 +54,18 @@ not recommended. */ char * -choose_temp_base () +choose_temp_base (void) { const char *base = choose_tmpdir (); char *temp_filename; int len; len = strlen (base); - temp_filename = xmalloc (len + TEMP_FILE_LEN + 1); + temp_filename = XNEWVEC (char, len + TEMP_FILE_LEN + 1); strcpy (temp_filename, base); strcpy (temp_filename + len, TEMP_FILE); - mktemp (temp_filename); - if (strlen (temp_filename) == 0) + if (mktemp (temp_filename) == 0) abort (); return temp_filename; }