Title: [128063] trunk/Source/WebKit2
Revision
128063
Author
carlo...@webkit.org
Date
2012-09-10 07:53:55 -0700 (Mon, 10 Sep 2012)

Log Message

[SOUP] Don't convert to UTF-8 the suggestedFilename passed to Download::decideDestinationWithSuggestedFilename()
https://bugs.webkit.org/show_bug.cgi?id=96261

Reviewed by Martin Robinson.

* WebProcess/Downloads/soup/DownloadSoup.cpp:
(WebKit::DownloadClient::didReceiveResponse):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (128062 => 128063)


--- trunk/Source/WebKit2/ChangeLog	2012-09-10 14:52:14 UTC (rev 128062)
+++ trunk/Source/WebKit2/ChangeLog	2012-09-10 14:53:55 UTC (rev 128063)
@@ -1,3 +1,13 @@
+2012-09-10  Carlos Garcia Campos  <cgar...@igalia.com>
+
+        [SOUP] Don't convert to UTF-8 the suggestedFilename passed to Download::decideDestinationWithSuggestedFilename()
+        https://bugs.webkit.org/show_bug.cgi?id=96261
+
+        Reviewed by Martin Robinson.
+
+        * WebProcess/Downloads/soup/DownloadSoup.cpp:
+        (WebKit::DownloadClient::didReceiveResponse):
+
 2012-09-10  Alexander Shalamov  <alexander.shala...@intel.com>
 
         [EFL][WK2] Add fullscreen enter / exit signals to the ewk_view API

Modified: trunk/Source/WebKit2/WebProcess/Downloads/soup/DownloadSoup.cpp (128062 => 128063)


--- trunk/Source/WebKit2/WebProcess/Downloads/soup/DownloadSoup.cpp	2012-09-10 14:52:14 UTC (rev 128062)
+++ trunk/Source/WebKit2/WebProcess/Downloads/soup/DownloadSoup.cpp	2012-09-10 14:53:55 UTC (rev 128063)
@@ -76,7 +76,7 @@
         }
 
         bool overwrite;
-        String destinationURI = m_download->decideDestinationWithSuggestedFilename(suggestedFilename.utf8().data(), overwrite);
+        String destinationURI = m_download->decideDestinationWithSuggestedFilename(suggestedFilename, overwrite);
         if (destinationURI.isEmpty()) {
 #if PLATFORM(GTK)
             GOwnPtr<char> buffer(g_strdup_printf(_("Cannot determine destination URI for download with suggested filename %s"), suggestedFilename.utf8().data()));
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to