Changeset 171023 in webkit


Ignore:
Timestamp:
Jul 12, 2014 11:32:13 AM (10 years ago)
Author:
oliver@apple.com
Message:

Temporary work around for <rdar://<rdar://problem/17513375>
https://bugs.webkit.org/show_bug.cgi?id=134848

Reviewed by Sam Weinig.

Temporarily work around <rdar://<rdar://problem/17513375> by
dropping the explicit cookie storage if it points out of the
container.

  • UIProcess/mac/WebContextMac.mm:

(WebKit::WebContext::platformDefaultCookieStorageDirectory):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r171015 r171023  
     12014-07-12  Oliver Hunt  <oliver@apple.com>
     2
     3        Temporary work around for <rdar://<rdar://problem/17513375>
     4        https://bugs.webkit.org/show_bug.cgi?id=134848
     5
     6        Reviewed by Sam Weinig.
     7
     8        Temporarily work around <rdar://<rdar://problem/17513375> by
     9        dropping the explicit cookie storage if it points out of the
     10        container.
     11
     12        * UIProcess/mac/WebContextMac.mm:
     13        (WebKit::WebContext::platformDefaultCookieStorageDirectory):
     14
    1152014-07-11  Enrica Casucci  <enrica@apple.com>
    216
  • trunk/Source/WebKit2/UIProcess/mac/WebContextMac.mm

    r170970 r171023  
    277277
    278278    path = path + "/Library/Cookies";
    279     return stringByResolvingSymlinksInPath(path);
     279    path = stringByResolvingSymlinksInPath(path);
     280    // Temporary work around for <rdar://<rdar://problem/17513375>
     281    if (path == "/var/mobile/Library/Cookies")
     282        return String();
     283
     284    return path;
    280285#else
    281286    notImplemented();
Note: See TracChangeset for help on using the changeset viewer.