initialize the lists to NULL (empty)

This commit is contained in:
Dana Jansens 2007-07-28 15:38:02 -04:00
parent 07d5674d39
commit ef54ca590d

View file

@ -79,7 +79,7 @@ ObtPaths* obt_paths_new(void)
ObtPaths *p;
const gchar *path;
p = g_new(ObtPaths, 1);
p = g_new0(ObtPaths, 1);
p->ref = 1;
path = g_getenv("XDG_CONFIG_HOME");