Merge branch 'release'

This commit is contained in:
David Bremner 2019-10-13 09:24:48 -03:00
commit 1979145b91
2 changed files with 9 additions and 0 deletions

View file

@ -167,4 +167,11 @@ This is just a test message (#7)
EOF
test_expect_equal_file EXPECTED OUTPUT
# there are more than 200 messages in this corpus
add_email_corpus lkml
test_begin_subtest "new doesn't run out of file descriptors with many gzipped files"
ulimit -n 200
gzip --recursive ${MAIL_DIR}
test_expect_success "notmuch new"
test_done

View file

@ -29,6 +29,8 @@ _gzfile_maybe_filter (GMimeStream *file_stream)
/* ignore filter id */
(void) g_mime_stream_filter_add ((GMimeStreamFilter *) gzstream, gzfilter);
g_object_unref (gzfilter);
g_object_unref (file_stream);
return gzstream;
} else {
return file_stream;