SVN commit 822887 by aacid: if you want to add a qbytearray to another one there's no need to convert it to char * M +1 -1 html_formimpl.cpp --- trunk/KDE/kdelibs/khtml/html/html_formimpl.cpp #822886:822887 @@ -305,7 +305,7 @@ else { QByteArray hstr("--"); - hstr += m_boundary.toLatin1().constData(); + hstr += m_boundary.toLatin1(); hstr += "\r\n"; hstr += "Content-Disposition: form-data; name=\""; hstr += (*it).data();