Remove unused variable in mod_rtmp
Unused variables break the build with recent versions of gcc and clang.
This commit is contained in:
parent
aea5cdd989
commit
acc8eb5cb6
|
@ -1213,7 +1213,7 @@ switch_status_t rtmp_session_login(rtmp_session_t *rsession, const char *user, c
|
|||
|
||||
switch_status_t rtmp_session_logout(rtmp_session_t *rsession, const char *user, const char *domain)
|
||||
{
|
||||
rtmp_account_t *account, *prev = NULL;
|
||||
rtmp_account_t *account;
|
||||
switch_event_t *event;
|
||||
|
||||
switch_thread_rwlock_wrlock(rsession->account_rwlock);
|
||||
|
|
Loading…
Reference in New Issue