X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=postlicyd%2Fmain-postlicyd.c;h=1f286eb283aebcd6da8a092721503ccbbc8fa998;hb=4cc3c542c668521aef91f06f5bdff1c73643b646;hp=07fe1deb8ce531cd132a5b06a55f11ad1a500aab;hpb=520b2f3bb198bfbb88b90b058ef610f0a9b980c6;p=apps%2Fpfixtools.git diff --git a/postlicyd/main-postlicyd.c b/postlicyd/main-postlicyd.c index 07fe1de..1f286eb 100644 --- a/postlicyd/main-postlicyd.c +++ b/postlicyd/main-postlicyd.c @@ -219,12 +219,9 @@ int main(int argc, char *argv[]) if (common_setup(pidfile, true, NULL, NULL, daemonize) != EXIT_SUCCESS || start_listener(config->port) < 0) { - config_delete(&config); return EXIT_FAILURE; } else { - int res = server_loop(query_starter, (delete_client_t)query_delete, - policy_run, config_refresh, config); - config_delete(&config); - return res; + return server_loop(query_starter, (delete_client_t)query_delete, + policy_run, config_refresh, config); } }