```
pp = typedVar("MY_STRUCT*", offset)
print pp[0], pp[1]
```
Expected:
1) printing two array elements
or
2) raise exception : pointer cannot be indexed
In fact:
pp[0] print the first struct field, pp[1] - second
Comments: ** Comment from web user: kernelnet **
pp = typedVar("MY_STRUCT*", offset)
print pp[0], pp[1]
```
Expected:
1) printing two array elements
or
2) raise exception : pointer cannot be indexed
In fact:
pp[0] print the first struct field, pp[1] - second
Comments: ** Comment from web user: kernelnet **
fixed kdlibcpp CL: 90938