fix locking bug

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5183 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale
2007-05-15 02:21:53 +00:00
parent 46043b05e0
commit b7c985096c
3 changed files with 8 additions and 8 deletions

View File

@@ -575,7 +575,7 @@ SWITCH_STANDARD_API(session_record_function)
stream->write_function(stream, "-Error Cannot locate session!\n");
return SWITCH_STATUS_SUCCESS;
}
if (switch_strlen_zero(action) || switch_strlen_zero(path)) {
goto usage;
}
@@ -594,11 +594,11 @@ SWITCH_STANDARD_API(session_record_function)
stream->write_function(stream, "USAGE: %s\n", session_record_api_interface.syntax);
switch_safe_free(mycmd);
return SWITCH_STATUS_SUCCESS;
done:
if (session) {
if (rsession) {
switch_core_session_rwunlock(rsession);
}