Browse Source

libtommath: Avoid a compiler warning on unused variable

Signed-hostap: Jouni Malinen <j@w1.fi>
Jouni Malinen 12 years ago
parent
commit
526b3a12f1
1 changed files with 3 additions and 0 deletions
  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
 #ifdef BN_MP_EXPTMOD_FAST_C
   }
   }
 #endif
 #endif
+  if (dr == 0) {
+    /* avoid compiler warnings about possibly unused variable */
+  }
 }
 }