]> git.cworth.org Git - notmuch/commitdiff
python-cffi: returned OwnedMessage objects from Message.replies
authorDavid Bremner <david@tethera.net>
Sat, 8 Jan 2022 14:03:16 +0000 (10:03 -0400)
committerDavid Bremner <david@tethera.net>
Sat, 8 Jan 2022 20:29:41 +0000 (16:29 -0400)
If we return regular Message objects, python will try to destroy them,
and the underlying notmuch object, causing e.g. the crash [1].

[1]: id:87sfu6utxg.fsf@tethera.net

bindings/python-cffi/notmuch2/_message.py
test/T392-python-cffi-notmuch.sh

index 2f2320766ce9805ca88e0ea81c34c36050263a2c..b4f651fb28a989719ab520ae0f653f20d06cbcea 100644 (file)
@@ -357,14 +357,14 @@ class Message(base.NotmuchObject):
         This method will only work if the message was created from a
         thread.  Otherwise it will yield no results.
 
-        :returns: An iterator yielding :class:`Message` instances.
+        :returns: An iterator yielding :class:`OwnedMessage` instances.
         :rtype: MessageIter
         """
         # The notmuch_messages_valid call accepts NULL and this will
         # become an empty iterator, raising StopIteration immediately.
         # Hence no return value checking here.
         msgs_p = capi.lib.notmuch_message_get_replies(self._msg_p)
-        return MessageIter(self, msgs_p, db=self._db)
+        return MessageIter(self, msgs_p, db=self._db, msg_cls=OwnedMessage)
 
     def __hash__(self):
         return hash(self.messageid)
index 50012c558f5dba53ea3ab91fde6214ae3d50f33b..15c8fc6bbe0b7dd76830df509678ebd35d235228 100755 (executable)
@@ -24,13 +24,11 @@ show_msgs(thread, 0)
 EOF
 
 test_begin_subtest "recursive traversal of replies (no crash)"
-test_subtest_known_broken
 test_python < recurse.py
 error=$?
 test_expect_equal "${error}" 0
 
 test_begin_subtest "recursive traversal of replies (output)"
-test_subtest_known_broken
 test_python < recurse.py
 tail -n 10 < OUTPUT > OUTPUT.sample
 cat <<EOF > EXPECTED