Tootfinder

Opt-in global Mastodon full text search. Join the index!

@cyrevolt@mastodon.social
2026-07-12 17:07:40

If you have a pointer to a pointer to a struct, you define that struct and assign the type to it, then you also need to adjust the intermediate pointer in #Ghidra and vroom vroom, you finally get to see the struct and its member just fine in the decompile view.
See also:

@cyrevolt@mastodon.social
2026-07-26 12:20:41

Sometimes, #Ghidra gets really creative.
Tons of parameters and 7x pointer derefs... whaaaat... 😹

@cyrevolt@mastodon.social
2026-07-26 10:30:25

#TIL about #Ghidra:
It might be that the decompile view shows you
```
void foo(void)
{
/* ... */
}
```
and yet, you see in another function calling it smth like
```
iVar1 = foo();
```
- leaving you puzzled.
It looks like a bug!
In…