mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-28 21:54:10 +01:00
442d405ad3
As reported in id:"CAEbOPGyuHnz4BPtDutnTPUHcP3eYcRCRkXhYoJR43RUMw671+g@mail.gmail.com" sometimes gmime tries to access a NULL pointer, e.g. g_mime_iconv_open() tries to access iconv_cache that is NULL if g_mime_init() is not called. This causes notmuch to segfault when calling gmime functions. Calling g_mime_init() initializes iconv_cache and others variables needed by gmime, making sure they are initialized when notmuch calls gmime functions. Test marked fix by db.
17 lines
464 B
Bash
Executable file
17 lines
464 B
Bash
Executable file
#!/usr/bin/env bash
|
|
test_description="python bindings"
|
|
. ./test-lib.sh
|
|
|
|
add_email_corpus
|
|
|
|
test_begin_subtest "compare thread ids"
|
|
test_python <<EOF
|
|
import notmuch
|
|
db = notmuch.Database(mode=notmuch.Database.MODE.READ_WRITE)
|
|
q_new = notmuch.Query(db, 'tag:inbox')
|
|
for t in q_new.search_threads():
|
|
print t.get_thread_id()
|
|
EOF
|
|
notmuch search --output=threads tag:inbox | sed s/^thread:// | sort > EXPECTED
|
|
test_expect_equal_file <(sort OUTPUT) EXPECTED
|
|
test_done
|