We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
OsString.inner.inner.0
OsString.inner.inner.bytes
1 parent 6067b36 commit a9495e0Copy full SHA for a9495e0
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