mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-12-01 00:31:28 +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)
|
if (*opaque)
|
||||||
{
|
{
|
||||||
free(opaque);
|
free(*opaque);
|
||||||
*opaque = NULL;
|
*opaque = NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue