engine: client: drop double free check from dbghulls

This commit is contained in:
Alibek Omarov
2026-05-13 10:53:21 +05:00
parent 0f490a2f16
commit 996f0e906b

View File

@@ -67,9 +67,6 @@ static winding_t * winding_alloc( uint numpoints )
static void free_winding( winding_t *w )
{
// simple sentinel by Carmack
if( *(unsigned *)w == 0xDEADC0DE )
Host_Error( "%s: freed a freed winding\n", __func__ );
*(unsigned *)w = 0xDEADC0DE;
free( w );
}