fix memory leaks

This commit is contained in:
2024-10-27 19:43:05 +00:00
parent a86291ca75
commit 87d8767d11
9 changed files with 236 additions and 35 deletions

View File

@@ -8,5 +8,7 @@ int main(void)
char str[B_UUID_STRING_MAX];
b_uuid_to_cstr(uuid, str);
printf("%s\n", str);
b_uuid_release(uuid);
return 0;
}