[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

rjw rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 07:26:55 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit f7ecdfd08312e44be647d102ec3322eb7fb5147a
Author: rjw <rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Mar 3 19:54:48 2003 +0000

            Fix build oops from last checkin to khtml/html/html_formimpl.cpp.
    
            Reviewed by trey
    
            * khtml/html/html_formimpl.cpp:
            (encodeCString):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@3727 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 94dd64d..6e5598d 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,3 +1,12 @@
+2003-03-03  Richard Williamson   <rjw at apple.com>
+
+        Fix build oops from last checkin to khtml/html/html_formimpl.cpp.
+        
+        Reviewed by trey
+
+        * khtml/html/html_formimpl.cpp:
+        (encodeCString):
+
 2003-03-03  Darin Adler  <darin at apple.com>
 
         Reviewed by Dave.
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 94dd64d..6e5598d 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,12 @@
+2003-03-03  Richard Williamson   <rjw at apple.com>
+
+        Fix build oops from last checkin to khtml/html/html_formimpl.cpp.
+        
+        Reviewed by trey
+
+        * khtml/html/html_formimpl.cpp:
+        (encodeCString):
+
 2003-03-03  Darin Adler  <darin at apple.com>
 
         Reviewed by Dave.
diff --git a/WebCore/khtml/html/html_formimpl.cpp b/WebCore/khtml/html/html_formimpl.cpp
index 0e8b9fe..6b05cdf 100644
--- a/WebCore/khtml/html/html_formimpl.cpp
+++ b/WebCore/khtml/html/html_formimpl.cpp
@@ -171,7 +171,7 @@ static QCString encodeCString(const QCString& e)
 
     //QCString orig(e.data(), e.size());
 
-    for(unsigned pos = 0; pos < elen; pos++) {
+    for(int pos = 0; pos < elen; pos++) {
         unsigned char c = e[pos];
 
         if ( (( c >= 'A') && ( c <= 'Z')) ||

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list