aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/uzbl-core.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/uzbl-core.c b/src/uzbl-core.c
index 779f378..e565b14 100644
--- a/src/uzbl-core.c
+++ b/src/uzbl-core.c
@@ -1161,8 +1161,10 @@ parse_command_parts(const gchar *line, GArray *a) {
CommandInfo *c = NULL;
gchar *exp_line = expand(line, 0);
- if(exp_line[0] == '\0')
+ if(exp_line[0] == '\0') {
+ g_free(exp_line);
return NULL;
+ }
/* separate the line into the command and its parameters */
gchar **tokens = g_strsplit(exp_line, " ", 2);