Parcourir la source

libtommath: Avoid a compiler warning on unused variable

Signed-hostap: Jouni Malinen <j@w1.fi>
Jouni Malinen il y a 12 ans
Parent
commit
526b3a12f1
1 fichiers modifiés avec 3 ajouts et 0 suppressions
  1. 3 0
      src/tls/libtommath.c

+ 3 - 0
src/tls/libtommath.c

@@ -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 */
+  }
 }