1
0
mirror of https://github.com/signalwire/freeswitch.git synced 2025-03-04 17:51:03 +00:00

Cleanup style for consistency

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

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