- fixed "Regression: Can't log into gmail.com"
- fixed "iBench doesn't report results - tests run but no number is recorded"
* platform/network/cf/FormDataStreamCFNet.cpp:
(WebCore::setHTTPBody): Removed extra ! character.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@17699
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2006-11-09 Maciej Stachowiak <mjs@apple.com>
+
+ Reviewed by Anders.
+
+ - fixed "Regression: Can't log into gmail.com"
+ - fixed "iBench doesn't report results - tests run but no number is recorded"
+
+ * platform/network/cf/FormDataStreamCFNet.cpp:
+ (WebCore::setHTTPBody): Removed extra ! character.
+
2006-11-09 Beth Dakin <bdakin@apple.com>
Reviewed by Hyatt.
{
size_t count = formData.elements().size();
- if (!count == 0)
+ if (count == 0)
return;
// Handle the common special case of one piece of form data, with no files.