summaryrefslogtreecommitdiff
path: root/service
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2012-12-16 18:15:21 -0500
committerColin Walters <walters@verbum.org>2012-12-17 16:13:28 -0500
commit3928089f34a17102b958fe39959215a447192ae0 (patch)
tree72935bb1291ffbc6f191ea0f3b3831ca40667acf /service
parent285e56d9f9967da33132424675c67078e4799a23 (diff)
downloaddconf-3928089f34a17102b958fe39959215a447192ae0.tar.gz
writer: Fix typo causing segfaults on service shutdown
Was seeing crashes in the latest gnome-ostree on login. https://bugzilla.gnome.org/show_bug.cgi?id=690316
Diffstat (limited to 'service')
-rw-r--r--service/dconf-writer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/service/dconf-writer.c b/service/dconf-writer.c
index b0b1015..0170046 100644
--- a/service/dconf-writer.c
+++ b/service/dconf-writer.c
@@ -158,7 +158,7 @@ dconf_writer_real_end (DConfWriter *writer)
{
while (!g_queue_is_empty (&writer->uncommited_changes))
{
- TaggedChange *change = g_queue_pop_head (&writer->commited_changes);
+ TaggedChange *change = g_queue_pop_head (&writer->uncommited_changes);
g_free (change->tag);
g_slice_free (TaggedChange, change);
}