src/server/daemon/webserver.c

changeset 574
76450adae540
parent 573
76ccfc2a932f
child 576
5c31cc844c68
equal deleted inserted replaced
573:76ccfc2a932f 574:76450adae540
295 re->func(re->data); 295 re->func(re->data);
296 re_next = re->next; 296 re_next = re->next;
297 free(re); 297 free(re);
298 re = re_next; 298 re = re_next;
299 } 299 }
300 300
301 resource_pool_cleanup();
302
303 webserver_destroy(); 301 webserver_destroy();
304 } 302 }
305 303
306 int webserver_reconfig() { 304 int webserver_reconfig() {
307 CfgManager mgr; 305 CfgManager mgr;
345 // free some stuff 343 // free some stuff
346 // this is not necessary, because the whole process will exit 344 // this is not necessary, because the whole process will exit
347 // however it will result in a nicer valgrind output with less 345 // however it will result in a nicer valgrind output with less
348 // memory leaks 346 // memory leaks
349 pool_destroy(cfg_get_init_pool()); 347 pool_destroy(cfg_get_init_pool());
348
349 resource_pool_cleanup();
350 func_cleanup();
351
352 ServerConfiguration *scfg = cfgmgr_get_server_config();
353 pool_destroy(scfg->pool);
350 } 354 }
351 355
352 int nsapi_runtime_version() { 356 int nsapi_runtime_version() {
353 return 303; 357 return 303;
354 } 358 }

mercurial