From: Nick Clifton Date: Fri, 25 Mar 2011 17:51:10 +0000 (+0000) Subject: * bucomm.c (make_tempname): Stop memory leak. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c48d800e1527375235d7030199eb284228e4c55c;p=binutils-gdb.git * bucomm.c (make_tempname): Stop memory leak. ICVS: ---------------------------------------------------------------------- --- diff --git a/binutils/ChangeLog b/binutils/ChangeLog index d17deffb38b..1497663219e 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -19,6 +19,7 @@ (parse_stab_members): Likewise. (stab_demangle_qualified): Likewise. * objdump.c (dump_reloc_set): Free malloced memory. + * bucomm.c (make_tempname): Stop memory leak. 2011-03-25 Pierre Muller diff --git a/binutils/bucomm.c b/binutils/bucomm.c index 77afc1084a8..9977b50137f 100644 --- a/binutils/bucomm.c +++ b/binutils/bucomm.c @@ -511,7 +511,10 @@ make_tempname (char *filename) fd = open (tmpname, O_RDWR | O_CREAT | O_EXCL, 0600); #endif if (fd == -1) - return NULL; + { + free (tmpname); + return NULL; + } close (fd); return tmpname; }