From e28a8b86c76489bd4de3ceb50a6b3c8bd2bbdc1f Mon Sep 17 00:00:00 2001 From: Gregory Maxwell Date: Wed, 12 Nov 2014 13:26:26 -0800 Subject: [PATCH] Remove a VERIFY_CHECK for >=0ness on an unsigned type. --- src/num_gmp_impl.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/num_gmp_impl.h b/src/num_gmp_impl.h index 6e18ac8087..b6eac97e28 100644 --- a/src/num_gmp_impl.h +++ b/src/num_gmp_impl.h @@ -315,7 +315,6 @@ static void secp256k1_num_get_hex(char *r, int rlen, const secp256k1_num_t *a) { for (int i=0; i= 0); VERIFY_CHECK(rlen-len+i < rlen); - VERIFY_CHECK(tmp[i] >= 0); VERIFY_CHECK(tmp[i] < 16); r[rlen-len+i] = cvt[tmp[i]]; }