Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/gtk-engine
diff options
context:
space:
mode:
authorDan Williams <dcbw@localhost.localdomain>2006-09-21 19:21:39 (GMT)
committer Dan Williams <dcbw@localhost.localdomain>2006-09-21 19:21:39 (GMT)
commitfea14a9d28253782988ced5b19b2b0092a9cb1f7 (patch)
treed70298e49809638015296efdfd159c840c83d236 /gtk-engine
parent973d79626db551115f0e9170e8f0dcd094026f90 (diff)
Fix segfault on malformed rc file. This g_free() should have been removed when the correspoding g_new0() was commented out above.
Diffstat (limited to 'gtk-engine')
-rw-r--r--gtk-engine/src/olpc_rc_style.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk-engine/src/olpc_rc_style.c b/gtk-engine/src/olpc_rc_style.c
index 83e8e24..8601bdd 100644
--- a/gtk-engine/src/olpc_rc_style.c
+++ b/gtk-engine/src/olpc_rc_style.c
@@ -352,7 +352,7 @@ olpc_rc_style_parse (GtkRcStyle *rc_style,
if (token != G_TOKEN_NONE)
{
- g_free(theme_data);
+// g_free(theme_data);
return token;
}
token = g_scanner_peek_next_token(scanner);