提交 235bf0c0 authored 作者: Anthony Minessale's avatar Anthony Minessale

one more for good measure

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@10208 d0543943-73ff-0310-b7d9-9358b9ac24b2
上级 de0ed8f2
......@@ -57,10 +57,11 @@ SWITCH_DECLARE(switch_core_session_t *) switch_core_session_locate(const char *u
if ((session = switch_core_hash_find(session_manager.session_table, uuid_str))) {
/* Acquire a read lock on the session */
#ifdef SWITCH_DEBUG_RWLOCKS
if (switch_channel_get_state(session->channel) >= CS_HANGUP ||
if (switch_channel_get_state(session->channel) >= CS_HANGUP || switch_test_flag(session, SSF_DESTROYED) ||
switch_core_session_perform_read_lock(session, file, func, line) != SWITCH_STATUS_SUCCESS) {
#else
if (switch_channel_get_state(session->channel) >= CS_HANGUP || switch_core_session_read_lock(session) != SWITCH_STATUS_SUCCESS) {
if (switch_channel_get_state(session->channel) >= CS_HANGUP || switch_test_flag(session, SSF_DESTROYED) ||
switch_core_session_read_lock(session) != SWITCH_STATUS_SUCCESS) {
#endif
/* not available, forget it */
session = NULL;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论