Don't forget to free the tmp string

This commit is contained in:
Matthias Clasen 2005-09-01 13:59:05 +00:00
parent a327d1d6fd
commit 6d2d63f6fd

View File

@ -307,6 +307,7 @@ g_param_spec_internal (GType param_type,
tmp = g_strdup (name);
canonicalize_key (tmp);
pspec->name = g_intern_string (tmp);
g_free (tmp);
}
if (flags & G_PARAM_STATIC_NICK)