summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark McLoughlin <mark@skynet.ie>2005-02-06 22:28:35 +0000
committerMark McLoughlin <markmc@src.gnome.org>2005-02-06 22:28:35 +0000
commitc4807beaa857930c660495d3058088318445662d (patch)
tree0e6054cda815c92e03691b60043cbfe714d25b90
parent8ee9347473e065e74ee944a065db0f8491497eb4 (diff)
downloadgconf-gnome-2-8.tar.gz
Fix bug #154005 - "preload breaks saved state", caused by a bug in the waygnome-2-8
2005-02-06 Mark McLoughlin <mark@skynet.ie> Fix bug #154005 - "preload breaks saved state", caused by a bug in the way the listeners tree was constructed. * gconf/gconf-listeners.c: (ltable_entry_new): take a list of path elements and index to the entry and construct the full path for that entry. (ltable_insert): update for above so that we don't pass use the wrong path for full_name.
-rw-r--r--ChangeLog12
-rw-r--r--gconf/gconf-listeners.c37
2 files changed, 41 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index 6da1bd75..f7297dcb 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
+2005-02-06 Mark McLoughlin <mark@skynet.ie>
+
+ Fix bug #154005 - "preload breaks saved state", caused
+ by a bug in the way the listeners tree was constructed.
+
+ * gconf/gconf-listeners.c:
+ (ltable_entry_new): take a list of path elements
+ and index to the entry and construct the full
+ path for that entry.
+ (ltable_insert): update for above so that we
+ don't pass use the wrong path for full_name.
+
2005-01-18 Mark McLoughlin <mark@skynet.ie>
Fixes problem where a path file which only includes
diff --git a/gconf/gconf-listeners.c b/gconf/gconf-listeners.c
index 819c6497..e44c23f6 100644
--- a/gconf/gconf-listeners.c
+++ b/gconf/gconf-listeners.c
@@ -108,8 +108,8 @@ static void ltable_remove_if (LTable* ltable,
static void ltable_spew(LTable* ltable);
#endif
-static LTableEntry* ltable_entry_new(const gchar* name,
- const gchar* full_name);
+static LTableEntry* ltable_entry_new(gchar **pathv,
+ int end);
static void ltable_entry_destroy(LTableEntry* entry);
static Listener* listener_new (guint cnxn_id,
@@ -340,7 +340,7 @@ ltable_insert(LTable* lt, const gchar* where, Listener* l)
if (lt->tree == NULL)
{
- lte = ltable_entry_new("/", "/");
+ lte = ltable_entry_new(NULL, 0);
lt->tree = g_node_new(lte);
@@ -389,7 +389,7 @@ ltable_insert(LTable* lt, const gchar* where, Listener* l)
if (found == NULL)
{
- ne = ltable_entry_new(dirnames[i], where);
+ ne = ltable_entry_new(dirnames, i);
if (across != NULL) /* Across is at the one past */
found = g_node_insert_data_before(cur, across, ne);
@@ -826,15 +826,36 @@ ltable_remove_if (LTable *ltable,
}
static LTableEntry*
-ltable_entry_new(const gchar* name,
- const gchar *full_name)
+ltable_entry_new(gchar **pathv,
+ int end)
{
LTableEntry* lte;
lte = g_new0(LTableEntry, 1);
- lte->name = g_strdup(name);
- lte->full_name = g_strdup (full_name);
+ if (pathv != NULL)
+ {
+ GString* full_name;
+ guint i;
+
+ lte->name = g_strdup(pathv[end]);
+
+ full_name = g_string_new("/");
+ i = 0;
+ while (i <= end)
+ {
+ g_string_append(full_name, pathv[i]);
+ if (i != end)
+ g_string_append_c(full_name, '/');
+ i++;
+ }
+ lte->full_name = g_string_free(full_name, FALSE);
+ }
+ else
+ {
+ lte->name = g_strdup("/");
+ lte->full_name = g_strdup("/");
+ }
return lte;
}