Changeset 128063 in webkit


Ignore:
Timestamp:
Sep 10, 2012 7:53:55 AM (12 years ago)
Author:
Carlos Garcia Campos
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):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r128056 r128063  
     12012-09-10  Carlos Garcia Campos  <cgarcia@igalia.com>
     2
     3        [SOUP] Don't convert to UTF-8 the suggestedFilename passed to Download::decideDestinationWithSuggestedFilename()
     4        https://bugs.webkit.org/show_bug.cgi?id=96261
     5
     6        Reviewed by Martin Robinson.
     7
     8        * WebProcess/Downloads/soup/DownloadSoup.cpp:
     9        (WebKit::DownloadClient::didReceiveResponse):
     10
    1112012-09-10  Alexander Shalamov  <alexander.shalamov@intel.com>
    212
  • trunk/Source/WebKit2/WebProcess/Downloads/soup/DownloadSoup.cpp

    r123019 r128063  
    7777
    7878        bool overwrite;
    79         String destinationURI = m_download->decideDestinationWithSuggestedFilename(suggestedFilename.utf8().data(), overwrite);
     79        String destinationURI = m_download->decideDestinationWithSuggestedFilename(suggestedFilename, overwrite);
    8080        if (destinationURI.isEmpty()) {
    8181#if PLATFORM(GTK)
Note: See TracChangeset for help on using the changeset viewer.