⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 98785 in webkit


Ignore:
Timestamp:
Oct 28, 2011, 5:03:46 PM (15 years ago)
Author:
commit-queue@webkit.org
Message:

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

Patch by Rafael Weinstein <rafaelw@chromium.org> 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:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r98783 r98785  
     12011-10-28  Rafael Weinstein  <rafaelw@chromium.org>
     2
     3        webkit.py gdb visualizer is broken after change to StringImpl
     4        https://bugs.webkit.org/show_bug.cgi?id=71154
     5
     6        Reviewed by Tony Chang.
     7
     8        r98624 changed StringImpl m_data to m_data32. This changes updates
     9        webkit.py to match.
     10
     11        * gdb/webkit.py:
     12
    1132011-10-28  Joseph Pecoraro  <pecoraro@apple.com>
    214
  • trunk/Tools/gdb/webkit.py

    r80376 r98785  
    112112            return '(null)'
    113113
    114         return ustring_to_string(self.val['m_impl']['m_ptr']['m_data'],
     114        return ustring_to_string(self.val['m_impl']['m_ptr']['m_data16'],
    115115                                 self.get_length())
    116116
     
    127127            return ''
    128128
    129         return ustring_to_string(self.val['m_impl']['m_ptr']['m_data'],
     129        return ustring_to_string(self.val['m_impl']['m_ptr']['m_data16'],
    130130                                 self.get_length())
    131131
Note: See TracChangeset for help on using the changeset viewer.