From f9c026a85b129328be8ed9ce74f19fc0065454be Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Fri, 13 Oct 2006 09:43:29 +0000 Subject: PR binutils/2876 * configure.in: Check for the mkstemp and mkdtemp functions. * configure: Regenerate. * config.in (HAVE_MKDTEMP): New potential define. (MAKE_MKSTEMP): Likewise. * bucomm.c (make_tempname): Use mkstemp if it is available. * make_tempdir): New function: Create a temporary directory using mkdtemp, if it is available. * bucomm.h (make_tempdir): New prototype. * objcopy.c (copy_archive): Use make_tempdir if it is available. (strip_main): Produce an warning message if a temporary file could not be (copy_main): Likewise. * ar.c (write_archive): Likewise. --- binutils/ar.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'binutils/ar.c') diff --git a/binutils/ar.c b/binutils/ar.c index 9675caf..e48249e 100644 --- a/binutils/ar.c +++ b/binutils/ar.c @@ -922,6 +922,9 @@ write_archive (bfd *iarch) strcpy (old_name, bfd_get_filename (iarch)); new_name = make_tempname (old_name); + if (new_name == NULL) + bfd_fatal ("could not create temporary file whilst writing archive"); + output_filename = new_name; obfd = bfd_openw (new_name, bfd_get_target (iarch)); -- cgit v1.1