Title: [154411] trunk/Tools
Revision
154411
Author
[email protected]
Date
2013-08-21 14:00:50 -0700 (Wed, 21 Aug 2013)

Log Message

<https://webkit.org/b/120134> [Tools] lldb_webkit.py helpers is incorrectly printing 8bit Strings

Patch by Joseph Pecoraro <[email protected]> on 2013-08-21
Reviewed by Benjamin Poulain.

WTFString moved the is8bit bit by one in r152201.

* lldb/lldb_webkit.py:
(WTFStringImplProvider.is_8bit):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (154410 => 154411)


--- trunk/Tools/ChangeLog	2013-08-21 20:58:35 UTC (rev 154410)
+++ trunk/Tools/ChangeLog	2013-08-21 21:00:50 UTC (rev 154411)
@@ -1,3 +1,14 @@
+2013-08-21  Joseph Pecoraro  <[email protected]>
+
+        <https://webkit.org/b/120134> [Tools] lldb_webkit.py helpers is incorrectly printing 8bit Strings
+
+        Reviewed by Benjamin Poulain.
+
+        WTFString moved the is8bit bit by one in r152201.
+
+        * lldb/lldb_webkit.py:
+        (WTFStringImplProvider.is_8bit):
+
 2013-08-21  Tim Horton  <[email protected]>
 
         Revert http://trac.webkit.org/changeset/154022, as it failed to update

Modified: trunk/Tools/lldb/lldb_webkit.py (154410 => 154411)


--- trunk/Tools/lldb/lldb_webkit.py	2013-08-21 20:58:35 UTC (rev 154410)
+++ trunk/Tools/lldb/lldb_webkit.py	2013-08-21 21:00:50 UTC (rev 154411)
@@ -145,7 +145,7 @@
     def is_8bit(self):
         # FIXME: find a way to access WTF::StringImpl::s_hashFlag8BitBuffer
         return bool(self.valobj.GetChildMemberWithName('m_hashAndFlags').GetValueAsUnsigned(0) \
-            & 1 << 6)
+            & 1 << 5)
 
 
 class WTFStringProvider:
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to