mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-03-07 10:00:27 +00:00
[lldb] Fix TestStackCorefile.py for ca0ce99fc8
This commit is contained in:
parent
a33e4c8ae9
commit
fa639eda65
@ -6,8 +6,7 @@ int main() {
|
||||
int *heap_int = (int*) malloc(sizeof (int));
|
||||
*heap_int = 10;
|
||||
|
||||
char stack_str[80];
|
||||
strcpy (stack_str, "stack string");
|
||||
char stack_str[] = "stack string";
|
||||
char *heap_str = (char*) malloc(80);
|
||||
strcpy (heap_str, "heap string");
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user