This is probably not the correct interpretation of this error.
The Win32 error above is more likely to indicate the actual problem.
Flags
Severity
Success
This code indicates success, rather than an error.
This may not be the correct interpretation of this code,
or possibly the program is handling errors incorrectly.
I'm new to radare2 ans was previously using it on Ubuntu or Kali. I switched to Manjaro 20.2 and noticed that whenever I press the [TAB] it ends up in a segmentation fault something like this: >> r2 hello [0x00001040]> aa [x] Analyze all flags starting with sym. and entry0 [...] read more
Let's say that I have a code like below #include <stdio.h> int main(void) { char char_array[5] = {'a', 'b', 'c', 'd', 'e'}; int int_array[5] = {1, 2, 3, 4, 5}; int i; char *char_ptr; int *int_ptr; char_ptr = char_array; int_ptr = int_array; for(i = 0; i < 5; i++){ printf("[char_ptr]For [...] read more