Merge pull request #917 from hoangprod/patch-1

Update double-free.md
This commit is contained in:
SirBroccoli 2024-08-13 20:53:55 +02:00 committed by GitHub
commit 7c75dcb9d5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;
}