From 55385c53565759f6182dc473ecb1405ae2efa6f8 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger <asterix@lagaule.org> Date: Mon, 3 Dec 2007 21:29:12 +0000 Subject: [PATCH] \x00 chars are not allowed in C (end of string) so in GTK. But we can get from gpg encrypted messages. --- src/common/connection_handlers.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/common/connection_handlers.py b/src/common/connection_handlers.py index 20c2aadcda..da3da52bdf 100644 --- a/src/common/connection_handlers.py +++ b/src/common/connection_handlers.py @@ -1606,6 +1606,8 @@ class ConnectionHandlers(ConnectionVcard, ConnectionBytestream, ConnectionDisco, keyID = gajim.config.get_per('accounts', self.name, 'keyid') if keyID: decmsg = self.gpg.decrypt(encmsg, keyID) + # \x00 chars are not allowed in C (so in GTK) + decmsg = decmsg.replace('\x00', '') if decmsg: msgtxt = decmsg encrypted = True -- GitLab