On Mon, May 15, 2017 at 03:58:29PM -0600, Jeff Law wrote: > On 05/14/2017 04:00 AM, Sylvestre Ledru wrote: > > Add missing fclose > > CID 1407987, 1407986 > > > > S > > > > > > > > 0005-2017-05-14-Sylvestre-Ledru-sylvestre-debian.org.patch > > > > > > From d255827a64012fb81937d6baa8534eabecf9b735 Mon Sep 17 00:00:00 2001 > > From: Sylvestre Ledru<sylves...@debian.org> > > Date: Sun, 14 May 2017 11:37:37 +0200 > > Subject: [PATCH 5/5] 2017-05-14 Sylvestre Ledru<sylves...@debian.org> > > > > * lto-wrapper.c (copy_file): Fix resource leaks > > CID 1407987, 1407986 > Doesn't this still leak in the cases were we call fatal_error?
fatal_error is a noreturn function, why should we bother to do any cleanups after it? All that code is going to be optimized away anyway. Jakub