X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=zone.h;h=69d6f1b6d650297aed3a70e4d4445d18e56755d5;hb=79ea6059001d4b4c86df6c3467d9d2e59d88c3f2;hp=a71916c01eb051eef386c07b26af1ed3b0573bbb;hpb=74bc8ee087b864d7d115527f2bf6b5f98ba35e0d;p=xonotic%2Fdarkplaces.git diff --git a/zone.h b/zone.h index a71916c0..69d6f1b6 100644 --- a/zone.h +++ b/zone.h @@ -135,14 +135,7 @@ void _Mem_CheckSentinelsGlobal(const char *filename, int fileline); // if pool is NULL this searches ALL pools for the allocation qboolean Mem_IsAllocated(mempool_t *pool, void *data); -static char* Mem_strdup (mempool_t *pool, const char* s) -{ - char* p; - if (s == NULL) return NULL; - p = (char*)Mem_Alloc (pool, strlen (s) + 1); - strcpy (p, s); - return p; -} +char* Mem_strdup (mempool_t *pool, const char* s); typedef struct memexpandablearray_array_s {