[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 06:22:03 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 49e13013025d6a6d597b7a2b18c21b39d686c443
Author: rjw <rjw at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Jun 27 23:09:16 2002 +0000

            * WebCoreSupport.subproj/IFTextRenderer.m:
            (-[IFTextRenderer floatWidthForCharacters:stringLength:fromCharacterPosition:numberOfCharacters:applyRounding:attemptFontSubstitution:]):
            Fixed uninitialized variable warning.  Compile being too aggressive,
            broke deployment build.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@1465 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index ade6a70..1da4d38 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,10 @@
+2002-06-27  Richard Williamson (local)  <rjw at apple.com>
+
+        * WebCoreSupport.subproj/IFTextRenderer.m:
+        (-[IFTextRenderer floatWidthForCharacters:stringLength:fromCharacterPosition:numberOfCharacters:applyRounding:attemptFontSubstitution:]):
+        Fixed uninitialized variable warning.  Compile being too aggressive,
+        broke deployment build.
+
 2002-06-27  Chris Blumenberg  <cblu at apple.com>
 
 	Fixed plug-in positioning.
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index ade6a70..1da4d38 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,3 +1,10 @@
+2002-06-27  Richard Williamson (local)  <rjw at apple.com>
+
+        * WebCoreSupport.subproj/IFTextRenderer.m:
+        (-[IFTextRenderer floatWidthForCharacters:stringLength:fromCharacterPosition:numberOfCharacters:applyRounding:attemptFontSubstitution:]):
+        Fixed uninitialized variable warning.  Compile being too aggressive,
+        broke deployment build.
+
 2002-06-27  Chris Blumenberg  <cblu at apple.com>
 
 	Fixed plug-in positioning.
diff --git a/WebKit/WebCoreSupport.subproj/IFTextRenderer.m b/WebKit/WebCoreSupport.subproj/IFTextRenderer.m
index e6be047..1392859 100644
--- a/WebKit/WebCoreSupport.subproj/IFTextRenderer.m
+++ b/WebKit/WebCoreSupport.subproj/IFTextRenderer.m
@@ -732,7 +732,7 @@ cleanup:
 {
     float totalWidth = 0;
     unsigned int i, clusterLength;
-    NSFont *substituteFont;
+    NSFont *substituteFont = nil;
     ATSGlyphRef glyphID;
     float lastWidth = 0;
     
diff --git a/WebKit/WebCoreSupport.subproj/WebTextRenderer.m b/WebKit/WebCoreSupport.subproj/WebTextRenderer.m
index e6be047..1392859 100644
--- a/WebKit/WebCoreSupport.subproj/WebTextRenderer.m
+++ b/WebKit/WebCoreSupport.subproj/WebTextRenderer.m
@@ -732,7 +732,7 @@ cleanup:
 {
     float totalWidth = 0;
     unsigned int i, clusterLength;
-    NSFont *substituteFont;
+    NSFont *substituteFont = nil;
     ATSGlyphRef glyphID;
     float lastWidth = 0;
     

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list