switch_ivr_originate: fix windows compiler warning

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@16322 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Mathieu Rene 2010-01-15 17:36:23 +00:00
parent ad7cc96015
commit 5af28a148e
1 changed files with 1 additions and 1 deletions

View File

@ -2609,7 +2609,7 @@ SWITCH_DECLARE(switch_status_t) switch_ivr_originate(switch_core_session_t *sess
switch_channel_t *b_channel = originate_status[oglobals.bridge_early_media].peer_channel;
switch_core_session_t *b_session = originate_status[oglobals.bridge_early_media].peer_session;
switch_status_t b_status = SWITCH_STATUS_FALSE;
switch_frame_t *b_frame;
switch_frame_t *b_frame = NULL;
if (b_channel && b_session) {
b_status = switch_core_session_read_frame(b_session, &b_frame, SWITCH_IO_FLAG_NONE, 0);