On Tue, Aug 11, 2015 at 1:06 PM, Junio C Hamano [off-list ref] wrote:
Looks correct; somehow this reminded me of the other topic from Peff
to reduce use of git_path() ;-)
quoted
- pidfile = git_pathdup("gc.pid");
+ pidfile = pidfile_path;
sigchain_push_common(remove_pidfile_on_signal);
atexit(remove_pidfile);
I wonder if you can reduce the atexit() here by registering this as
a tempfile to be cleared?
Heh, I should have been slightly more patient. That is what 14/16 is about ;-)