Cleanup style for consistency

This commit is contained in:
Travis Cross 2014-04-01 20:54:44 +00:00
parent a8dd56f2b3
commit 6234a94f41

View File

@ -319,7 +319,7 @@ SWITCH_STANDARD_APP(basic_function)
if (zstr(file)) { if (zstr(file)) {
switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "missing file\n"); switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_ERROR, "missing file\n");
goto DONE; goto end;
} }
if (!switch_is_file_path(file)) { if (!switch_is_file_path(file)) {
@ -349,7 +349,7 @@ SWITCH_STANDARD_APP(basic_function)
mb_close(&bi); mb_close(&bi);
DONE: end:
switch_safe_free(fdup); switch_safe_free(fdup);
switch_safe_free(mydata); switch_safe_free(mydata);
} }