add: galloc: free: check if the ptr is valid

This commit is contained in:
2023-07-23 19:38:40 +02:00
parent c688cfc4b1
commit 1d9de5df65
2 changed files with 9 additions and 2 deletions

View File

@ -16,7 +16,9 @@ main()
ptr2 = galloc(0x9000);
test_num(ptr2, 0, "alloc too big");
free(ptr2);
test_num(leaks(), 0, "leaks");
ptr1 = galloc(1);
test_num(leaks(), 1, "leaks");
free(ptr1);
}