[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.22-985-g3c00f00
rolandsteiner at chromium.org
rolandsteiner at chromium.org
Wed Mar 17 18:30:52 UTC 2010
The following commit has been merged in the webkit-1.1 branch:
commit fcff1fd7c4a7fc3280d4c5aaab6262561cecd986
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