libtommath: Avoid a compiler warning on unused variable
authorJouni Malinen <j@w1.fi>
Sat, 16 Mar 2013 10:03:37 +0000 (12:03 +0200)
committerJouni Malinen <j@w1.fi>
Sat, 16 Mar 2013 10:03:37 +0000 (12:03 +0200)
Signed-hostap: Jouni Malinen <j@w1.fi>

src/tls/libtommath.c

index 821d754..3fb8fbe 100644 (file)
@@ -676,6 +676,9 @@ static int mp_exptmod (mp_int * G, mp_int * X, mp_int * P, mp_int * Y)
 #ifdef BN_MP_EXPTMOD_FAST_C
   }
 #endif
+  if (dr == 0) {
+    /* avoid compiler warnings about possibly unused variable */
+  }
 }