--- deliantra/server/common/shstr.C 2008/12/31 17:35:37 1.32 +++ deliantra/server/common/shstr.C 2008/12/31 18:07:41 1.33 @@ -42,8 +42,8 @@ { int len = strlen (s); - shstr_alloc += sizeof (unsigned int) * 2 + len + 1; - const char *v = (const char *) (2 + (int *)g_slice_alloc (sizeof (unsigned int) * 2 + len + 1)); + shstr_alloc += sizeof (uint32_t) * 2 + len + 1; + const char *v = (const char *) (2 + (int *)g_slice_alloc (sizeof (uint32_t) * 2 + len + 1)); shstr::length (v) = len; shstr::refcnt (v) = 1; @@ -53,16 +53,7 @@ return v; } -static const char * -makenull () -{ - const char *s = makevec ("(null)"); - shstr_tmp::length (s) = 0; - //shstr ::refcnt (s) = 0xffffffff; // useful for debugging - return s; -} - -const char *shstr_tmp::null = makenull (); +shstr_vec shstr_tmp::nullvec = { 0, 0xffffffff, "(null)" }; const char * shstr::find (const char *s) @@ -79,7 +70,7 @@ shstr::intern (const char *s) { if (!s) - return null; + return null (); if (const char *found = find (s)) { @@ -128,8 +119,8 @@ ht.erase (o); //printf ("GC %4d %3d %d >%s<%d\n", (int)ht.size (), n, shstr::refcnt (s), s, shstr::length (s)); - shstr_alloc -= sizeof (unsigned int) * 2 + length (s) + 1; - g_slice_free1 (sizeof (unsigned int) * 2 + length (s) + 1, -2 + (int *) s); + shstr_alloc -= sizeof (uint32_t) * 2 + length (s) + 1; + g_slice_free1 (sizeof (uint32_t) * 2 + length (s) + 1, -2 + (int *) s); } else ++i; @@ -138,8 +129,6 @@ curpos = *i; } -const shstr shstr_null; - // declare these here to get correct initialisation order #define def(str) const shstr shstr_ ## str (# str); # include "shstrinc.h"