diff options
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -243,7 +243,14 @@ read_rc_file (FILE *file) /* do it */ if (*line != '#') - command (line); + { + char *result; + result = command (0, line); + + /* Gobble the result. */ + if (result) + free (result); + } *line = '\0'; } |