]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - pr_edict.c
got rid of Hunk_Alloc, all allocations now have a proper name (perhaps a bit too...
[xonotic/darkplaces.git] / pr_edict.c
index 7f2bcf08d4bcfa420f55c893392d7e94ef503de6..f816537dd3660462c450aab3907a3655ff8baf34 100644 (file)
@@ -807,7 +807,7 @@ char *ED_NewString (char *string)
        int             i,l;
        
        l = strlen(string) + 1;
-       new = Hunk_Alloc (l);
+       new = Hunk_AllocName (l, "edict string");
        new_p = new;
 
        for (i=0 ; i< l ; i++)