* platform/KURL.cpp:
(WebCore::appendEncodedHostname): Fix spelling (strLen, not strlen).
* platform/network/curl/ResourceHandleManager.cpp:
(WebCore::parseDataUrl): Fix a ".." typo and call data instead of characters.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@30250
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2008-02-14 Darin Adler <darin@apple.com>
+
+ - another round of build fixes
+
+ * platform/KURL.cpp:
+ (WebCore::appendEncodedHostname): Fix spelling (strLen, not strlen).
+ * platform/network/curl/ResourceHandleManager.cpp:
+ (WebCore::parseDataUrl): Fix a ".." typo and call data instead of characters.
+
2008-02-14 Darin Adler <darin@apple.com>
- added back accidentally-removed files
if (error != U_ZERO_ERROR)
buffer.append(hostnameBuffer, numCharactersConverted);
#elif USE(QT4_UNICODE)
- QByteArray result = QUrl::toAce(String(str, strlen));
+ QByteArray result = QUrl::toAce(String(str, strLen));
buffer.append(result.constData(), result.length());
#endif
}
g_free(out);
#else
Vector<char> out;
- if (base64Decode(data..latin1().data(), data.length(), out))
+ if (base64Decode(data.latin1().data(), data.length(), out))
data = String(out.data(), out.size());
else
data = String();
client->didReceiveResponse(handle, response);
if (!data.isEmpty())
- client->didReceiveData(handle, data.latin1().characters(), data.length(), 0);
+ client->didReceiveData(handle, data.latin1().data(), data.length(), 0);
client->didFinishLoading(handle);
}