From 8016a1bd3b60e917e1b12748dd80c06c3462c286 Mon Sep 17 00:00:00 2001 From: Martin Storsjö Date: Thu, 28 May 2015 11:39:45 +0300 Subject: rtmpdh: Remove an unnecessary check in the gcrypt/nettle dh_compute_key MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Martin Storsjö --- libavformat/rtmpdh.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'libavformat/rtmpdh.c') diff --git a/libavformat/rtmpdh.c b/libavformat/rtmpdh.c index c29b563d72..b73d9875c5 100644 --- a/libavformat/rtmpdh.c +++ b/libavformat/rtmpdh.c @@ -137,11 +137,6 @@ static int dh_compute_key(FF_DH *dh, FFBigNum pub_key_bn, uint32_t secret_key_len, uint8_t *secret_key) { FFBigNum k; - int num_bytes; - - num_bytes = bn_num_bytes(dh->p); - if (num_bytes <= 0 || num_bytes > MAX_BYTES) - return -1; bn_new(k); if (!k) -- cgit v1.2.3