diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-13 12:39:02 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-07-13 12:41:13 +0200 |
commit | 51bb68928933bf5d72efb9193f1be6af6e72c80f (patch) | |
tree | 572cabe1fda6bc35c431e6451cf57e7696ab97f0 /solenv/gdb/libreoffice | |
parent | 1b9d48f59e8a04c3b9d829e150a59fc88084445b (diff) |
fix BigPtrArray pretty printer
after commit 64079184cc06444e9dfdb55a5c66829e929d4a59
"improve useuniqueptr loplugin to find arrays"
Change-Id: I29841af65fcb0c1f92e52d9aeee164328bbb4663
Diffstat (limited to 'solenv/gdb/libreoffice')
-rw-r--r-- | solenv/gdb/libreoffice/sw.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/gdb/libreoffice/sw.py b/solenv/gdb/libreoffice/sw.py index 6c0165e3fc6b..7fd401b63049 100644 --- a/solenv/gdb/libreoffice/sw.py +++ b/solenv/gdb/libreoffice/sw.py @@ -194,7 +194,7 @@ class BigPtrArrayPrinter(object): class _iterator(six.Iterator): def __init__(self, array): - self.blocks = array['m_ppInf'] + self.blocks = array['m_ppInf']['_M_t']['_M_head_impl'] self.count = array['m_nSize'] self.pos = 0 self.block_count = array['m_nBlock'] |