]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
fix
authorAnthony Minessale <anthony.minessale@gmail.com>
Thu, 22 Dec 2005 22:18:53 +0000 (22:18 +0000)
committerAnthony Minessale <anthony.minessale@gmail.com>
Thu, 22 Dec 2005 22:18:53 +0000 (22:18 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@193 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/switch_core.c

index f25970f31441f22b90ddb1239c0733ec7d8ec8db..ff3c8ec9a21a8cc4f128e1c5fc808fdf3b266ae8 100644 (file)
@@ -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;