logical error fix in rtp engine check in dtls flow

This commit is contained in:
Souradeep Bera 2024-05-06 15:06:19 +05:30 committed by GitHub
parent 31cf32d91f
commit 73e7695bb5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -12529,7 +12529,7 @@ static int check_engine(switch_rtp_engine_t *engine)
status = switch_rtp_zerocopy_read_frame(engine->rtp_session, &engine->read_frame, flags);
if (!SWITCH_READ_ACCEPTABLE(status)) {
if (SWITCH_READ_ACCEPTABLE(status)) {
return 0;
}