diff --git a/channels/chan_dahdi.c b/channels/chan_dahdi.c index c145bf9631..4b5f0310e9 100644 --- a/channels/chan_dahdi.c +++ b/channels/chan_dahdi.c @@ -11709,6 +11709,11 @@ static struct dahdi_pvt *handle_init_event(struct dahdi_pvt *i, int event) return NULL; } +static void monitor_pfds_clean(void *arg) { + struct pollfd **pfds = arg; + ast_free(*pfds); +} + static void *do_monitor(void *data) { int count, res, res2, spoint, pollres=0; @@ -11732,6 +11737,7 @@ static void *do_monitor(void *data) #endif pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, NULL); + pthread_cleanup_push(monitor_pfds_clean, &pfds); for (;;) { /* Lock the interface list */ ast_mutex_lock(&iflock); @@ -11988,6 +11994,7 @@ static void *do_monitor(void *data) ast_mutex_unlock(&iflock); } /* Never reached */ + pthread_cleanup_pop(1); return NULL; } diff --git a/codecs/ilbc/doCPLC.c b/codecs/ilbc/doCPLC.c index adbfac71a2..9fa4584fe8 100644 --- a/codecs/ilbc/doCPLC.c +++ b/codecs/ilbc/doCPLC.c @@ -90,7 +90,7 @@ int lag=20, randlag; float gain, maxcc; float use_gain; - float gain_comp, maxcc_comp, per, max_per; + float gain_comp, maxcc_comp, per, max_per=0; int i, pick, use_lag; float ftmp, randvec[BLOCKL_MAX], pitchfact, energy; diff --git a/main/app.c b/main/app.c index 0a14b4dda1..8bb03f0cb1 100644 --- a/main/app.c +++ b/main/app.c @@ -2196,7 +2196,9 @@ int ast_app_parse_timelen(const char *timestr, int *result, enum ast_timelen uni return -1; } - if ((res = sscanf(timestr, FMT, &amount, u)) == 0) { + res = sscanf(timestr, FMT, &amount, u); + + if (res == 0 || res == EOF) { #undef FMT return -1; } else if (res == 2) { diff --git a/main/asterisk.c b/main/asterisk.c index 092241b27f..fe4088b541 100644 --- a/main/asterisk.c +++ b/main/asterisk.c @@ -1800,11 +1800,17 @@ static void really_quit(int num, shutdown_nice_t niceness, int restart) close(ast_socket); ast_socket = -1; unlink(ast_config_AST_SOCKET); + pthread_kill(lthread, SIGURG); + pthread_join(lthread, NULL); } if (ast_consock > -1) close(ast_consock); if (!ast_opt_remote) unlink(ast_config_AST_PID); + if (sig_alert_pipe[0]) + close(sig_alert_pipe[0]); + if (sig_alert_pipe[1]) + close(sig_alert_pipe[1]); printf("%s", term_quit()); if (restart) { int i; diff --git a/main/data.c b/main/data.c index 9bf1cab267..020e2ca66c 100644 --- a/main/data.c +++ b/main/data.c @@ -3290,6 +3290,7 @@ static void data_shutdown(void) ao2_t_ref(root_data.container, -1, "Unref root_data.container in data_shutdown"); root_data.container = NULL; ast_rwlock_destroy(&root_data.lock); + AST_TEST_UNREGISTER(test_data_get); } int ast_data_init(void) @@ -3307,9 +3308,7 @@ int ast_data_init(void) res |= ast_manager_register_xml("DataGet", 0, manager_data_get); -#ifdef TEST_FRAMEWORK AST_TEST_REGISTER(test_data_get); -#endif ast_register_atexit(data_shutdown); diff --git a/utils/clicompat.c b/utils/clicompat.c index 33f90fae16..d46ed897d7 100644 --- a/utils/clicompat.c +++ b/utils/clicompat.c @@ -9,8 +9,18 @@ void ast_cli(int fd, const char *fmt, ...) struct ast_cli_entry; +int ast_register_atexit(void (*func)(void)); +int ast_register_atexit(void (*func)(void)) +{ + return 0; +} int ast_cli_register_multiple(struct ast_cli_entry *e, int len); int ast_cli_register_multiple(struct ast_cli_entry *e, int len) { return 0; } +int ast_cli_unregister_multiple(struct ast_cli_entry *e, int len); +int ast_cli_unregister_multiple(struct ast_cli_entry *e, int len) +{ + return 0; +}