[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

kbalazs at webkit.org kbalazs at webkit.org
Wed Dec 22 14:28:59 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit ac604f294a5859973c705e10ad74963e653ca8aa
Author: kbalazs at webkit.org <kbalazs at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Oct 11 17:07:51 2010 +0000

    2010-10-11  Balazs Kelemen  <kbalazs at webkit.org>
    
            Reviewed by Kenneth Rohde Christiansen.
    
            WebProcess ASSERTs with a null application cache dir creation parameter
            https://bugs.webkit.org/show_bug.cgi?id=47489
    
            * WebProcess/WebProcess.cpp:
            (WebKit::WebProcess::initializeWebProcess):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@69503 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit2/ChangeLog b/WebKit2/ChangeLog
index 4231377..6f4164b 100644
--- a/WebKit2/ChangeLog
+++ b/WebKit2/ChangeLog
@@ -1,3 +1,13 @@
+2010-10-11  Balazs Kelemen  <kbalazs at webkit.org>
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        WebProcess ASSERTs with a null application cache dir creation parameter
+        https://bugs.webkit.org/show_bug.cgi?id=47489
+
+        * WebProcess/WebProcess.cpp:
+        (WebKit::WebProcess::initializeWebProcess):
+
 2010-10-11  Kenneth Rohde Christiansen  <kenneth.christiansen at openbossa.org>
 
         Reviewed by Andreas Kling.
diff --git a/WebKit2/WebProcess/WebProcess.cpp b/WebKit2/WebProcess/WebProcess.cpp
index 9dd86ae..905528b 100644
--- a/WebKit2/WebProcess/WebProcess.cpp
+++ b/WebKit2/WebProcess/WebProcess.cpp
@@ -116,7 +116,8 @@ void WebProcess::initializeWebProcess(const WebProcessCreationParameters& parame
 {
     ASSERT(m_pageMap.isEmpty());
 
-    cacheStorage().setCacheDirectory(parameters.applicationCacheDirectory);
+    if (!parameters.applicationCacheDirectory.isEmpty())
+        cacheStorage().setCacheDirectory(parameters.applicationCacheDirectory);
 
     if (!parameters.injectedBundlePath.isEmpty()) {
         m_injectedBundle = InjectedBundle::create(parameters.injectedBundlePath);

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list