From kde-commits Mon Feb 25 00:03:14 2008 From: Carlo Segato Date: Mon, 25 Feb 2008 00:03:14 +0000 To: kde-commits Subject: KDE/kdenetwork/kopete/protocols/msn Message-Id: <1203897794.901552.26574.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=120389780315694 SVN commit 778944 by segato: Fix crash when connecting to msn with HTTP method BUG: 153630 M +1 -1 msnsocket.cpp --- trunk/KDE/kdenetwork/kopete/protocols/msn/msnsocket.cpp #778943:778944 @@ -1061,7 +1061,7 @@ for(int i=0; i < length; i++) content[i] = bytes[offset + i]; // Create the web response stream from the response content bytes. - m_stream = new QDataStream( &content,QIODevice::ReadOnly); + m_stream = new QDataStream( content ); m_stream->setVersion(QDataStream::Qt_3_3); } }