Title: [98785] trunk/Tools
Revision
98785
Author
[email protected]
Date
2011-10-28 17:03:46 -0700 (Fri, 28 Oct 2011)

Log Message

webkit.py gdb visualizer is broken after change to StringImpl
https://bugs.webkit.org/show_bug.cgi?id=71154

Patch by Rafael Weinstein <[email protected]> on 2011-10-28
Reviewed by Tony Chang.

r98624 changed StringImpl m_data to m_data32. This changes updates
webkit.py to match.

* gdb/webkit.py:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (98784 => 98785)


--- trunk/Tools/ChangeLog	2011-10-28 23:57:21 UTC (rev 98784)
+++ trunk/Tools/ChangeLog	2011-10-29 00:03:46 UTC (rev 98785)
@@ -1,3 +1,15 @@
+2011-10-28  Rafael Weinstein  <[email protected]>
+
+        webkit.py gdb visualizer is broken after change to StringImpl
+        https://bugs.webkit.org/show_bug.cgi?id=71154
+
+        Reviewed by Tony Chang.
+
+        r98624 changed StringImpl m_data to m_data32. This changes updates
+        webkit.py to match.
+
+        * gdb/webkit.py:
+
 2011-10-28  Joseph Pecoraro  <[email protected]>
 
         Fix typo in check-for-inappropriate-objc-class-names

Modified: trunk/Tools/gdb/webkit.py (98784 => 98785)


--- trunk/Tools/gdb/webkit.py	2011-10-28 23:57:21 UTC (rev 98784)
+++ trunk/Tools/gdb/webkit.py	2011-10-29 00:03:46 UTC (rev 98785)
@@ -111,7 +111,7 @@
         if self.get_length() == 0:
             return '(null)'
 
-        return ustring_to_string(self.val['m_impl']['m_ptr']['m_data'],
+        return ustring_to_string(self.val['m_impl']['m_ptr']['m_data16'],
                                  self.get_length())
 
 
@@ -126,7 +126,7 @@
         if self.get_length() == 0:
             return ''
 
-        return ustring_to_string(self.val['m_impl']['m_ptr']['m_data'],
+        return ustring_to_string(self.val['m_impl']['m_ptr']['m_data16'],
                                  self.get_length())
 
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to