Re: [PATCH v5 01/12] sequencer: avoid using errno clobbered by rollback_lock_file()

2018-03-02 Thread Johannes Schindelin
Hi Martin, On Tue, 27 Feb 2018, Martin Ågren wrote: > On 26 February 2018 at 22:29, Johannes Schindelin > wrote: > > As pointed out in a review of the `--recreate-merges` patch series, > > `rollback_lock_file()` clobbers errno. Therefore, we have to report the > >

Re: [PATCH v5 01/12] sequencer: avoid using errno clobbered by rollback_lock_file()

2018-02-27 Thread Martin Ågren
On 26 February 2018 at 22:29, Johannes Schindelin wrote: > As pointed out in a review of the `--recreate-merges` patch series, > `rollback_lock_file()` clobbers errno. Therefore, we have to report the > error message that uses errno before calling said function. > >

[PATCH v5 01/12] sequencer: avoid using errno clobbered by rollback_lock_file()

2018-02-26 Thread Johannes Schindelin
As pointed out in a review of the `--recreate-merges` patch series, `rollback_lock_file()` clobbers errno. Therefore, we have to report the error message that uses errno before calling said function. Signed-off-by: Johannes Schindelin --- sequencer.c | 13