space after if

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@11999 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Brian West 2009-02-13 21:46:31 +00:00
parent e0572463f7
commit 6f3260efe7
1 changed files with 3 additions and 3 deletions

View File

@ -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);