forked from Mirrors/freeswitch
space after if
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@11999 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
e0572463f7
commit
6f3260efe7
@ -247,11 +247,11 @@ static switch_bool_t process_data(vmd_session_info_t * vmd_info, switch_frame_t
|
||||
}
|
||||
|
||||
/*
|
||||
if(vmd_info->data_len != len){
|
||||
if (vmd_info->data_len != len){
|
||||
vmd_info->data_len = len;
|
||||
if(vmd_info->data != NULL) free(vmd_info->data);
|
||||
if (vmd_info->data != NULL) free(vmd_info->data);
|
||||
vmd_info->data = (int16_t *)malloc(len);
|
||||
if(vmd_info->data == NULL) return SWITCH_FALSE;
|
||||
if (vmd_info->data == NULL) return SWITCH_FALSE;
|
||||
}
|
||||
|
||||
(void)memcpy(vmd_info->data, data, len);
|
||||
|
Loading…
Reference in New Issue
Block a user