From: divverent Date: Thu, 9 Apr 2009 05:39:54 +0000 (+0000) Subject: Fix spurious error message in CL_Locs_FreeNode - ID: 2742143 X-Git-Tag: xonotic-v0.1.0preview~1727 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=2a717d975d901315506d978ac38837e5bf67333b;p=xonotic%2Fdarkplaces.git Fix spurious error message in CL_Locs_FreeNode - ID: 2742143 git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@8883 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/cl_main.c b/cl_main.c index 7b651685..768b2004 100644 --- a/cl_main.c +++ b/cl_main.c @@ -1915,6 +1915,7 @@ void CL_Locs_FreeNode(cl_locnode_t *node) { *pointer = node->next; Mem_Free(node); + return; } } Con_Printf("CL_Locs_FreeNode: no such node! (%p)\n", node);