[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

weinig at apple.com weinig at apple.com
Wed Dec 22 13:45:55 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 1f81979093e897d6cfe772be04d5d56ed1e8625e
Author: weinig at apple.com <weinig at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sat Sep 25 03:29:00 2010 +0000

    Fix accidental increase in the size of InlineBox by using a bit
    field to indicate that a bool should only take up 1 bit.
    
    Rubber-stamped by Dan Bernstein.
    
    * rendering/InlineBox.h:
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@68326 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index cca5602..452036f 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,12 @@
+2010-09-24  Sam Weinig  <sam at webkit.org>
+
+        Rubber-stamped by Dan Bernstein.
+
+        Fix accidental increase in the size of InlineBox by using a bit
+        field to indicate that a bool should only take up 1 bit.
+
+        * rendering/InlineBox.h:
+
 2010-09-24  Simon Fraser  <simon.fraser at apple.com>
 
         Reviewed by Sam Weinig.
diff --git a/WebCore/rendering/InlineBox.h b/WebCore/rendering/InlineBox.h
index 2281b75..1cd88ff 100644
--- a/WebCore/rendering/InlineBox.h
+++ b/WebCore/rendering/InlineBox.h
@@ -307,7 +307,7 @@ protected:
     bool m_extracted : 1;
     bool m_hasVirtualLogicalHeight : 1;
 
-    bool m_isVertical;
+    bool m_isVertical : 1;
 
     // for RootInlineBox
     bool m_endsWithBreak : 1;  // Whether the line ends with a <br>.

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list