logical error fix in rtp engine check in dtls flow
This commit is contained in:
parent
31cf32d91f
commit
73e7695bb5
|
@ -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);
|
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;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue