From f43fe7ee82192183c62767f0914a8dd64c4f4914 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sat, 15 Oct 2016 19:00:16 +0200 Subject: Kopete - jabber: Prevent startup crashes Signed-off-by: Michele Calgaro (cherry picked from commit d6dc04becb5df5dae635b0ed17136c70a4e0166f) --- kopete/protocols/jabber/libiris/iris/xmpp-core/xmlprotocol.cpp | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) (limited to 'kopete') diff --git a/kopete/protocols/jabber/libiris/iris/xmpp-core/xmlprotocol.cpp b/kopete/protocols/jabber/libiris/iris/xmpp-core/xmlprotocol.cpp index 3521a628..9208b60a 100644 --- a/kopete/protocols/jabber/libiris/iris/xmpp-core/xmlprotocol.cpp +++ b/kopete/protocols/jabber/libiris/iris/xmpp-core/xmlprotocol.cpp @@ -84,17 +84,10 @@ static TQDomElement stripExtraNS(const TQDomElement &e) // to make it pretty. static TQString xmlToString(const TQDomElement &e, const TQString &fakeNS, const TQString &fakeTQName, bool clip) { - TQDomElement i = e.cloneNode().toElement(); - - // It seems TQDom can only have one namespace attribute at a time (see docElement 'HACK'). - // Fortunately we only need one kind depending on the input, so it is specified here. - TQDomElement fake = e.ownerDocument().createElementNS(fakeNS, fakeTQName); - fake.appendChild(i); - fake = stripExtraNS(fake); TQString out; { TQTextStream ts(&out, IO_WriteOnly); - fake.firstChild().save(ts, 0); + e.save(ts, 0); } // 'clip' means to remove any unwanted (and unneeded) characters, such as a trailing newline if(clip) { -- cgit v1.2.1