[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 07:16:28 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 1dc68a451acc3aa6b89ebc60c2c5838638172280
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Dec 19 06:17:38 2002 +0000

            Reviewed by Chris.
    
    	- fixed fix for 3132056 -- Supply Finder bits for decoded BinHex files
    
            * Downloads.subproj/WebBinHexDecoder.m: (-[WebBinHexDecoder decodeHeader]):
    	Mask off fewer Finder flag bits. Use the same mask as for MacBinary, in fact.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@3132 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 7819b7b..32705c6 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,5 +1,14 @@
 2002-12-18  Darin Adler  <darin at apple.com>
 
+        Reviewed by Chris.
+
+	- fixed fix for 3132056 -- Supply Finder bits for decoded BinHex files
+
+        * Downloads.subproj/WebBinHexDecoder.m: (-[WebBinHexDecoder decodeHeader]):
+	Mask off fewer Finder flag bits. Use the same mask as for MacBinary, in fact.
+
+2002-12-18  Darin Adler  <darin at apple.com>
+
         Reviewed by Richard.
 
 	- fixed 3127490 -- pages w/frames sometimes show up blank
diff --git a/WebKit/Downloads.subproj/WebBinHexDecoder.m b/WebKit/Downloads.subproj/WebBinHexDecoder.m
index c1a01f6..88ad7dc 100644
--- a/WebKit/Downloads.subproj/WebBinHexDecoder.m
+++ b/WebKit/Downloads.subproj/WebBinHexDecoder.m
@@ -257,8 +257,7 @@ done:
     _resourceForkLengthRemaining = (((((header.remainder[15] << 8) | header.remainder[16]) << 8) | header.remainder[17]) << 8) | header.remainder[18];
     
     // Mask off to the only fields in BinHex that we want to respect.
-    // Most flags just aren't supported in BinHex files even though there's a 16-bit field.
-    _finderFlags &= kHasBundle | kIsStationery;
+    _finderFlags &= kColor | kIsShared | kHasCustomIcon | kIsStationery | kHasBundle | kIsAlias;
     
     // Reset the CRC so it's ready to compute a fork CRC.
     _CRC = 0;

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list