summaryrefslogtreecommitdiff
path: root/xfconf/xfconf-cache.c
diff options
context:
space:
mode:
authorBrian J. Tarricone <brian@tarricone.org>2009-08-23 00:59:11 -0700
committerBrian J. Tarricone <brian@tarricone.org>2009-08-23 00:59:11 -0700
commit86cfde6cddef120622d91af606ecaf417186a678 (patch)
tree5f35a0facd483b98f13d6e3256d4682e6d6a23fd /xfconf/xfconf-cache.c
parent8f1c96c0fd9f4870d64ce88ebdac002b601f69b0 (diff)
downloadxfconf-86cfde6cddef120622d91af606ecaf417186a678.tar.gz
fix crash; g_propagate_error() doesn't copy the src error
... so we can't free it afterwards, obviously
Diffstat (limited to 'xfconf/xfconf-cache.c')
-rw-r--r--xfconf/xfconf-cache.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/xfconf/xfconf-cache.c b/xfconf/xfconf-cache.c
index ec1e0c6..674bdef 100644
--- a/xfconf/xfconf-cache.c
+++ b/xfconf/xfconf-cache.c
@@ -717,7 +717,6 @@ xfconf_cache_set(XfconfCache *cache,
{
/* this is bad... */
g_propagate_error(error, tmp_error);
- g_error_free(tmp_error);
xfconf_cache_mutex_unlock(&cache->cache_lock);
return FALSE;
}