[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 13:28:37 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit de9c70d92e72bdc62b8fdda46fb52e2c02d6833f
Author: kbalazs at webkit.org <kbalazs at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Sep 16 17:37:51 2010 +0000

    2010-09-16  Balazs Kelemen  <kbalazs at webkit.org>
    
            Unreviewed trivial typo fix.
    
            Remove old debug helper code inside |#if 0| from ConnectionQt.cpp
    
            * Platform/CoreIPC/qt/ConnectionQt.cpp:
            (CoreIPC::Connection::readyReadHandler):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@67637 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit2/ChangeLog b/WebKit2/ChangeLog
index d739272..4ec8623 100644
--- a/WebKit2/ChangeLog
+++ b/WebKit2/ChangeLog
@@ -1,3 +1,12 @@
+2010-09-16  Balazs Kelemen  <kbalazs at webkit.org>
+
+        Unreviewed trivial typo fix.
+
+        Remove old debug helper code inside |#if 0| from ConnectionQt.cpp
+
+        * Platform/CoreIPC/qt/ConnectionQt.cpp:
+        (CoreIPC::Connection::readyReadHandler):
+
 2010-09-15  Enrica Casucci  <enrica at apple.com>
 
         Reviewed by Sam Weinig.
diff --git a/WebKit2/Platform/CoreIPC/qt/ConnectionQt.cpp b/WebKit2/Platform/CoreIPC/qt/ConnectionQt.cpp
index 1e4c22b..dfd34a8 100644
--- a/WebKit2/Platform/CoreIPC/qt/ConnectionQt.cpp
+++ b/WebKit2/Platform/CoreIPC/qt/ConnectionQt.cpp
@@ -63,12 +63,8 @@ void Connection::readyReadHandler()
             m_currentMessageSize = *reinterpret_cast<size_t*>(m_readBuffer.data());
         }
 
-        if (m_socket->bytesAvailable() < m_currentMessageSize) {
-#if 0
-            printf("received message size=%d, waiting for more data\n", (int)m_currentMessageSize);
-#endif
+        if (m_socket->bytesAvailable() < m_currentMessageSize)
             return;
-        }
 
         size_t numberOfBytesRead = m_socket->read(reinterpret_cast<char*>(m_readBuffer.data()), m_currentMessageSize);
         ASSERT_UNUSED(numberOfBytesRead, numberOfBytesRead);

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list