We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cecdb32 + a9495e0 commit e730dfcCopy full SHA for e730dfc
src/etc/gdb_providers.py
@@ -71,7 +71,7 @@ def __init__(self, valobj):
71
self._valobj = valobj
72
buf = self._valobj["inner"]["inner"]
73
is_windows = "Wtf8Buf" in buf.type.name
74
- vec = buf[ZERO_FIELD] if is_windows else buf
+ vec = buf["bytes"] if is_windows else buf
75
76
self._length = int(vec["len"])
77
self._data_ptr = unwrap_unique_or_non_null(vec["buf"]["inner"]["ptr"])
0 commit comments