mirror of
https://github.com/carlospolop/hacktricks
synced 2024-11-24 21:53:54 +00:00
Update double-free.md
A slight typo here probably. Printing i1 would always result in the same address regardless of the double free.
This commit is contained in:
parent
495183ab52
commit
e234a234ce
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@ int main() {
|
||||||
printf("g1: %p\n", (void *)g1);
|
printf("g1: %p\n", (void *)g1);
|
||||||
printf("h1: %p\n", (void *)h1);
|
printf("h1: %p\n", (void *)h1);
|
||||||
printf("i1: %p\n", (void *)i1);
|
printf("i1: %p\n", (void *)i1);
|
||||||
printf("i2: %p\n", (void *)i1);
|
printf("i2: %p\n", (void *)i2);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue