diff --git a/src/switch_core.c b/src/switch_core.c index f25970f314..ff3c8ec9a2 100644 --- a/src/switch_core.c +++ b/src/switch_core.c @@ -1411,14 +1411,13 @@ SWITCH_DECLARE(void *) switch_core_hash_find(switch_hash *hash, char *key) SWITCH_DECLARE(void) switch_core_launch_thread(switch_thread_start_t func, void *obj) { switch_thread *thread; - switch_threadattr_t *thd_attr;; + switch_threadattr_t *thd_attr; switch_core_thread_session *ts; switch_memory_pool *pool = NULL; switch_threadattr_create(&thd_attr, runtime.memory_pool); switch_threadattr_detach_set(thd_attr, 1); - if (switch_core_new_memory_pool(&pool) != SWITCH_STATUS_SUCCESS) { switch_console_printf(SWITCH_CHANNEL_CONSOLE, "Could not allocate memory pool\n"); return;