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


The following commit has been merged in the debian/unstable branch:
commit 0578d9b0c7122e5131466fc837b68feb8b558239
Author: rjw <rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu May 29 20:00:05 2003 +0000

    	Fix 3272292.  Ensure that loadStatus is always
    	initialized to NSImageRepLoadStatusUnknownType.
    
            Reviewed by Chris.
    
            * WebCoreSupport.subproj/WebImageRenderer.m:
            (-[WebImageRenderer initWithMIMEType:]):
            (-[WebImageRenderer initWithData:MIMEType:]):
            (-[WebImageRenderer initWithContentsOfFile:]):
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@4446 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index f90d7c1..2bf21f3 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,15 @@
+2003-05-29  Richard Williamson   <rjw at apple.com>
+
+	Fix 3272292.  Ensure that loadStatus is always
+	initialized to NSImageRepLoadStatusUnknownType.
+
+        Reviewed by Chris.
+
+        * WebCoreSupport.subproj/WebImageRenderer.m:
+        (-[WebImageRenderer initWithMIMEType:]):
+        (-[WebImageRenderer initWithData:MIMEType:]):
+        (-[WebImageRenderer initWithContentsOfFile:]):
+
 2003-05-28  Ken Kocienda  <kocienda at apple.com>
 
         Reviewed by Richard
diff --git a/WebKit/WebCoreSupport.subproj/WebImageRenderer.m b/WebKit/WebCoreSupport.subproj/WebImageRenderer.m
index 15d7ace..be7ca01 100644
--- a/WebKit/WebCoreSupport.subproj/WebImageRenderer.m
+++ b/WebKit/WebCoreSupport.subproj/WebImageRenderer.m
@@ -98,6 +98,7 @@ static NSMutableArray *activeImageRenderers;
         MIMEType = [MIME copy];
     }
     isNull = YES;
+    loadStatus = NSImageRepLoadStatusUnknownType;
     return self;
 }
 
@@ -115,6 +116,7 @@ static NSMutableArray *activeImageRenderers;
         else
             isNull = YES;
     }
+    loadStatus = NSImageRepLoadStatusUnknownType;
     return self;
 }
 
@@ -125,6 +127,7 @@ static NSMutableArray *activeImageRenderers;
     self = [super initWithContentsOfFile:imagePath];
     if (self)
         isNull = NO;
+    loadStatus = NSImageRepLoadStatusUnknownType;
     return self;
 }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list