Merge pull request #1584 from greenbea/patch-7

[mod_callcenter] Fix SWITCH_EVENT_PRESENCE_PROBE unbind
This commit is contained in:
Brian West 2022-09-06 10:57:26 -05:00 committed by GitHub
commit c999598a0a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions

View File

@ -4211,6 +4211,10 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_callcenter_load)
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Couldn't register subclass %s!\n", CALLCENTER_EVENT);
return SWITCH_STATUS_TERM;
}
memset(&globals, 0, sizeof(globals));
globals.pool = pool;
/* Subscribe to presence request events */
if (switch_event_bind_removable(modname, SWITCH_EVENT_PRESENCE_PROBE, SWITCH_EVENT_SUBCLASS_ANY,
@ -4219,9 +4223,6 @@ SWITCH_MODULE_LOAD_FUNCTION(mod_callcenter_load)
return SWITCH_STATUS_GENERR;
}
memset(&globals, 0, sizeof(globals));
globals.pool = pool;
switch_core_hash_init(&globals.queue_hash);
switch_mutex_init(&globals.mutex, SWITCH_MUTEX_NESTED, globals.pool);