'
autoreconf: automake failed with exit status: 1
$ automake --version | head -1
automake (GNU automake) 1.11.2
--
Kirill A. Shutemov
tp://notmuchmail.org/
--
Kirill A. Shutemov
se(sclient->fd_in) < 0)
i_error("close(%s) failed: %m", sclient->path);
- if (sclient->fd_out != -1 && sclient->fd_out != sclient->fd_out)
+ if (sclient->fd_out != -1 && sclient->fd_out != sclient->fd_in
+ && close(sclient->fd_out) < 0)
i_error("close(%s/out) failed: %m", sclient->path);
sclient->fd_in = sclient->fd_out = -1;
--
Kirill A. Shutemov
Stephan Bosch wrote:
> On 12/13/2013 2:07 AM, Kirill A. Shutemov wrote:
> > I've tried to use sieve-filter for my inbox (~6000 messages). It failed
> > after
> > some work with this backtrace:
> >
> > sieve-filter(kas): Error: socketpair() failed: Too many o
Stephan Bosch wrote:
> On 12/13/2013 11:14 PM, Kirill A. Shutemov wrote:
> > Stephan Bosch wrote:
> >> This probably fixes it, although I am not entirely sure. I am mainly a
> >> bit puzzled on how this causes the fd leak; the fd_in and fd_out are for
> >> the
On Sat, Dec 21, 2013 at 03:18:31PM +0100, Stephan Bosch wrote:
> On 12/14/2013 5:39 PM, Kirill A. Shutemov wrote:
> > Stephan Bosch wrote:
> >> On 12/13/2013 11:14 PM, Kirill A. Shutemov wrote:
> >>> Stephan Bosch wrote:
> >>>> This probably fixes it, a