[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

rolandsteiner at chromium.org rolandsteiner at chromium.org
Thu Apr 8 02:18:24 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit a11d4b21cebb4597dbc29667e5001c1ced6e1109
Author: rolandsteiner at chromium.org <rolandsteiner at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Mar 10 06:32:28 2010 +0000

    Unreviewed build fix. Fix variable name change that somehow didn't
    make it into the patch.
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@55767 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 103503b..0a812be 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,5 +1,10 @@
 2010-03-10  Roland Steiner  <rolandsteiner at chromium.org>
 
+        Unreviewed build fix. Fix variable name change that somehow didn't
+        make it into the patch.
+
+2010-03-10  Roland Steiner  <rolandsteiner at chromium.org>
+
         Reviewed by David Levin.
 
         Bug 28293 -  [Chromium] event.datatransfer.getdata("text/uri-list") is treated the same as getdata("URL")
diff --git a/WebCore/platform/chromium/ClipboardChromium.cpp b/WebCore/platform/chromium/ClipboardChromium.cpp
index 55b92b0..0ecf5b0 100644
--- a/WebCore/platform/chromium/ClipboardChromium.cpp
+++ b/WebCore/platform/chromium/ClipboardChromium.cpp
@@ -249,7 +249,7 @@ bool ClipboardChromium::setData(const String& type, const String& data)
             String& line = m_dataObject->uriList[i];
             line = line.stripWhiteSpace();
             if (line.isEmpty()) {
-                m_dataObject->uriList.remove(n);
+                m_dataObject->uriList.remove(i);
                 continue;
             }
             ++i;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list