diff options
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/srtp/srtp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/srtp/srtp.c b/src/plugins/srtp/srtp.c index 58a35c31606..9e5c367b1a7 100644 --- a/src/plugins/srtp/srtp.c +++ b/src/plugins/srtp/srtp.c @@ -243,7 +243,7 @@ srtp_ctx_write (srtp_tc_t *ctx, session_t *app_session, { /* Peeking only pre-header dgram because the session is connected */ rv = svm_fifo_peek (app_session->tx_fifo, 0, sizeof (hdr), (u8 *) &hdr); - ASSERT (rv == sizeof (hdr) && hdr.data_length < vec_len (buf)); + ASSERT (rv == sizeof (hdr) && hdr.data_length < 2000); ASSERT (to_deq >= hdr.data_length + SESSION_CONN_HDR_LEN); dgram_sz = hdr.data_length + SESSION_CONN_HDR_LEN; |