Skip to content

Commit

Permalink
Merge pull request #917 from hoangprod/patch-1
Browse files Browse the repository at this point in the history
Update double-free.md
  • Loading branch information
carlospolop authored Aug 13, 2024
2 parents 0e57ade + e234a23 commit 7c75dcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion binary-exploitation/libc-heap/double-free.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ int main() {
printf("g1: %p\n", (void *)g1);
printf("h1: %p\n", (void *)h1);
printf("i1: %p\n", (void *)i1);
printf("i2: %p\n", (void *)i1);
printf("i2: %p\n", (void *)i2);

return 0;
}
Expand Down

0 comments on commit 7c75dcb

Please sign in to comment.