mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-24 13:21:20 +00:00
Fix free
This commit is contained in:
parent
06d4d71b41
commit
8f1618018e
1 changed files with 1 additions and 1 deletions
|
@ -572,7 +572,7 @@ void Snake_Free(void **opaque)
|
|||
{
|
||||
if (*opaque)
|
||||
{
|
||||
free(opaque);
|
||||
free(*opaque);
|
||||
*opaque = NULL;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue