WebKit Bugzilla
New
Browse
Search+
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
[patch]
proposed fix
soupfix.diff (text/plain), 1.25 KB, created by
Gustavo Noronha (kov)
on 2008-12-17 06:36:44 PST
(
hide
)
Description:
proposed fix
Filename:
MIME Type:
Creator:
Gustavo Noronha (kov)
Created:
2008-12-17 06:36:44 PST
Size:
1.25 KB
patch
obsolete
>diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog >index 62ea947..073c95b 100644 >--- a/WebCore/ChangeLog >+++ b/WebCore/ChangeLog >@@ -1,3 +1,11 @@ >+2008-12-16 Gustavo Noronha Silva <gns@gnome.org> >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ Fix AtomicString usage, so that building works. >+ >+ * platform/network/soup/ResourceHandleSoup.cpp: >+ > 2008-12-16 Darin Adler <darin@apple.com> > > Reviewed and landed by Cameron Zwarich. >diff --git a/WebCore/platform/network/soup/ResourceHandleSoup.cpp b/WebCore/platform/network/soup/ResourceHandleSoup.cpp >index af577ba..5fd3a4d 100644 >--- a/WebCore/platform/network/soup/ResourceHandleSoup.cpp >+++ b/WebCore/platform/network/soup/ResourceHandleSoup.cpp >@@ -298,7 +298,7 @@ bool ResourceHandle::startHttp(String urlString) > if (!customHeaders.isEmpty()) { > HTTPHeaderMap::const_iterator end = customHeaders.end(); > for (HTTPHeaderMap::const_iterator it = customHeaders.begin(); it != end; ++it) >- soup_message_headers_append(msg->request_headers, it->first.utf8().data(), it->second.utf8().data()); >+ soup_message_headers_append(msg->request_headers, it->first.string().utf8().data(), it->second.utf8().data()); > } > > FormData* httpBody = d->m_request.httpBody();
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Flags:
zecke
:
review+
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 22900
: 26091