* mu.c: free the config option (small leak fix)

This commit is contained in:
Dirk-Jan C. Binnema 2009-12-11 19:43:18 +02:00
parent 94715a4bf9
commit ef6d35f555
1 changed files with 3 additions and 2 deletions

View File

@ -235,8 +235,9 @@ main (int argc, char *argv[])
}
}
mu_msg_gmime_uninit ();
mu_msg_gmime_uninit();
mu_log_uninit();
mu_config_uninit(&config);
return rv == MU_OK ? 0 : 1;
}