diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-03-13 00:29:58 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-03-13 00:29:58 +0100 |
commit | b2e2e4831c49e58a9ae11dc33eb09feb6f1e04a8 (patch) | |
tree | cf35a1da80a70f86fa64336f83b536bcb0fb8872 /src/redshift.c | |
parent | Outcomment .gitignore line that erroneously blocks the src/redshift-gtk dir (diff) | |
download | redshift-ng-b2e2e4831c49e58a9ae11dc33eb09feb6f1e04a8.tar.gz redshift-ng-b2e2e4831c49e58a9ae11dc33eb09feb6f1e04a8.tar.bz2 redshift-ng-b2e2e4831c49e58a9ae11dc33eb09feb6f1e04a8.tar.xz |
Free resources from config-ini.c on exit
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src/redshift.c')
-rw-r--r-- | src/redshift.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/redshift.c b/src/redshift.c index af76e67..e4143fc 100644 --- a/src/redshift.c +++ b/src/redshift.c @@ -1089,6 +1089,8 @@ main(int argc, char *argv[]) } } + config_ini_free(&config_state); + switch (mode) { case PROGRAM_MODE_ONE_SHOT: case PROGRAM_MODE_PRINT: |