Fix visplane getting allocated twice

This commit is contained in:
filpAM 2020-05-16 00:20:52 +00:00
parent c3f2c7618f
commit ac314d5f34

View file

@ -402,7 +402,7 @@ static visplane_t *new_visplane(unsigned hash)
visplane_t *check = freetail;
if (!check)
{
check = calloc(2, sizeof (*check));
check = calloc(1, sizeof (*check));
if (check == NULL) I_Error("%s: Out of memory", "new_visplane"); // FIXME: ugly
}
else