Don't create a new memory pool until it's clear we actually need it.
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@10281 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
53d696803b
commit
c5178a5ba1
|
@ -1191,11 +1191,6 @@ SWITCH_MODULE_RUNTIME_FUNCTION(mod_erlang_event_runtime)
|
||||||
switch_log_bind_logger(socket_logger, SWITCH_LOG_DEBUG, SWITCH_FALSE);
|
switch_log_bind_logger(socket_logger, SWITCH_LOG_DEBUG, SWITCH_FALSE);
|
||||||
|
|
||||||
for (;;) {
|
for (;;) {
|
||||||
if (switch_core_new_memory_pool(&listener_pool) != SWITCH_STATUS_SUCCESS) {
|
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "OH OH no pool\n");
|
|
||||||
goto fail;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* zero out errno because ei_accept doesn't differentiate between a
|
/* zero out errno because ei_accept doesn't differentiate between a
|
||||||
* failed authentication or a socket failure, or a client version
|
* failed authentication or a socket failure, or a client version
|
||||||
* mismatch or a godzilla attack */
|
* mismatch or a godzilla attack */
|
||||||
|
@ -1216,6 +1211,11 @@ SWITCH_MODULE_RUNTIME_FUNCTION(mod_erlang_event_runtime)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (switch_core_new_memory_pool(&listener_pool) != SWITCH_STATUS_SUCCESS) {
|
||||||
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "OH OH no pool\n");
|
||||||
|
goto fail;
|
||||||
|
}
|
||||||
|
|
||||||
if (!(listener = switch_core_alloc(listener_pool, sizeof(*listener)))) {
|
if (!(listener = switch_core_alloc(listener_pool, sizeof(*listener)))) {
|
||||||
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Memory Error\n");
|
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "Memory Error\n");
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue