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); } }