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

darin darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:57:36 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit b5d54a91048d96bffaea2e30121ce92e4e9e147b
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Nov 6 23:31:41 2002 +0000

            * Downloads.subproj/WebBinHexDecoder.m: (-[WebBinHexDecoder decodeIntoBuffer:size:]):
    	Fix an off-by-one error handling repeat counts.
    
            * WebKit.pbproj/project.pbxproj: Fix group name I accidentally mangled.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2578 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 89b7e80..5679e08 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,5 +1,12 @@
 2002-11-06  Darin Adler  <darin at apple.com>
 
+        * Downloads.subproj/WebBinHexDecoder.m: (-[WebBinHexDecoder decodeIntoBuffer:size:]):
+	Fix an off-by-one error handling repeat counts.
+
+        * WebKit.pbproj/project.pbxproj: Fix group name I accidentally mangled.
+
+2002-11-06  Darin Adler  <darin at apple.com>
+
 	- added a BinHex decoder and did a little work on the MacBinary decoder
         
         I'm not supposed to be working on this, but I didn't feel like doing "real" work.
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index 89b7e80..5679e08 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,5 +1,12 @@
 2002-11-06  Darin Adler  <darin at apple.com>
 
+        * Downloads.subproj/WebBinHexDecoder.m: (-[WebBinHexDecoder decodeIntoBuffer:size:]):
+	Fix an off-by-one error handling repeat counts.
+
+        * WebKit.pbproj/project.pbxproj: Fix group name I accidentally mangled.
+
+2002-11-06  Darin Adler  <darin at apple.com>
+
 	- added a BinHex decoder and did a little work on the MacBinary decoder
         
         I'm not supposed to be working on this, but I didn't feel like doing "real" work.
diff --git a/WebKit/Downloads.subproj/WebBinHexDecoder.m b/WebKit/Downloads.subproj/WebBinHexDecoder.m
index 87462e3..fd02cc2 100644
--- a/WebKit/Downloads.subproj/WebBinHexDecoder.m
+++ b/WebKit/Downloads.subproj/WebBinHexDecoder.m
@@ -87,8 +87,6 @@ typedef struct {
                     c &= 0xFF;
                 }
                 
-                //printf("added the character %X to the CRC, CRC is now %X\n", repeatCharacter, CRC);
-                
                 repeatCount -= 1;
                 if (bufferP == bufferEnd) {
                     goto done;
@@ -105,7 +103,7 @@ typedef struct {
                     repeatCount = 1;
                     repeatCharacter = RUN_LENGTH_CODE;
                 } else {
-                    repeatCount = byte;
+                    repeatCount = byte - 1;
                 }
                 sawRepeatCharacter = NO;
             } else {
diff --git a/WebKit/WebKit.pbproj/project.pbxproj b/WebKit/WebKit.pbproj/project.pbxproj
index 48c4b11..7fe3a17 100644
--- a/WebKit/WebKit.pbproj/project.pbxproj
+++ b/WebKit/WebKit.pbproj/project.pbxproj
@@ -1537,6 +1537,7 @@
 				83413E8D0375BCD3004719BE,
 			);
 			isa = PBXGroup;
+			name = Downloads;
 			path = Downloads.subproj;
 			refType = 4;
 		};

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list