[SCM] WebKit Debian packaging branch, webkit-1.3, updated. upstream/1.3.7-4207-g178b198

kbalazs at webkit.org kbalazs at webkit.org
Sun Feb 20 23:43:32 UTC 2011


The following commit has been merged in the webkit-1.3 branch:
commit ff06a04efc6f2be22ca388639a55c2f24426f25c
Author: kbalazs at webkit.org <kbalazs at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Jan 24 16:20:00 2011 +0000

    Typo fix.
    
    Rubber-stamped by Csaba Osztrogonác.
    
    * UIProcess/Launcher/qt/ProcessLauncherQt.cpp:
    (WebKit::ProcessLauncher::launchProcess): Move the bracket to the right place.
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@76520 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/Source/WebKit2/ChangeLog b/Source/WebKit2/ChangeLog
index a3a682c..60ab104 100644
--- a/Source/WebKit2/ChangeLog
+++ b/Source/WebKit2/ChangeLog
@@ -1,3 +1,12 @@
+2011-01-24  Balazs Kelemen  <kbalazs at webkit.org>
+
+        Rubber-stamped by Csaba Osztrogonác.
+
+        Typo fix.
+
+        * UIProcess/Launcher/qt/ProcessLauncherQt.cpp:
+        (WebKit::ProcessLauncher::launchProcess): Move the bracket to the right place.
+
 2011-01-24  Kimmo Kinnunen  <kimmo.t.kinnunen at nokia.com>
 
         Reviewed by Kenneth Rohde Christiansen.
diff --git a/Source/WebKit2/UIProcess/Launcher/qt/ProcessLauncherQt.cpp b/Source/WebKit2/UIProcess/Launcher/qt/ProcessLauncherQt.cpp
index baa5ee7..4dc8610 100644
--- a/Source/WebKit2/UIProcess/Launcher/qt/ProcessLauncherQt.cpp
+++ b/Source/WebKit2/UIProcess/Launcher/qt/ProcessLauncherQt.cpp
@@ -96,7 +96,7 @@ void ProcessLauncher::launchProcess()
     }
 
     // Don't expose the ui socket to the web process
-    while (fcntl(sockets[1], F_SETFD, FD_CLOEXEC == -1)) {
+    while (fcntl(sockets[1], F_SETFD, FD_CLOEXEC)  == -1) {
         if (errno != EINTR) {
             ASSERT_NOT_REACHED();
             while (close(sockets[0]) == -1 && errno == EINTR) { }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list