]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Merge branch 'bug22801_028' into maint-0.2.9
authorNick Mathewson <nickm@torproject.org>
Wed, 5 Jul 2017 15:18:59 +0000 (11:18 -0400)
committerNick Mathewson <nickm@torproject.org>
Wed, 5 Jul 2017 15:18:59 +0000 (11:18 -0400)
1  2 
src/common/util.c

index a7bce2ea6cd6018f7ee177140cbbfa683ba76779,b2b97613a7ea6520d29db35e690a76e8df929b36..b7468dfcb315e6397d6c432ed1ce74172239a485
@@@ -5693,8 -5535,17 +5693,17 @@@ tor_weak_random_range(tor_weak_rng_t *r
  int64_t
  clamp_double_to_int64(double number)
  {
 -  int exp;
 +  int exponent;
  
+ #if defined(__MINGW32__) || defined(__MINGW64__)
+ /*
+   Mingw's math.h uses gcc's __builtin_choose_expr() facility to declare
+   isnan, isfinite, and signbit.  But as implemented in at least some
+   versions of gcc, __builtin_choose_expr() can generate type warnings
+   even from branches that are not taken.  So, suppress those warnings.
+ */
+ DISABLE_GCC_WARNING(float-conversion)
+ #endif
    /* NaN is a special case that can't be used with the logic below. */
    if (isnan(number)) {
      return 0;
  
    /* Handle infinities and finite numbers with magnitude >= 2^63. */
    return signbit(number) ? INT64_MIN : INT64_MAX;
+ #if defined(__MINGW32__) || defined(__MINGW64__)
+ ENABLE_GCC_WARNING(float-conversion)
+ #endif
  }
  
 +/** Return a uint64_t value from <b>a</b> in network byte order. */
 +uint64_t
 +tor_htonll(uint64_t a)
 +{
 +#ifdef WORDS_BIGENDIAN
 +  /* Big endian. */
 +  return a;
 +#else /* WORDS_BIGENDIAN */
 +  /* Little endian. The worst... */
 +  return htonl((uint32_t)(a>>32)) |
 +    (((uint64_t)htonl((uint32_t)a))<<32);
 +#endif /* WORDS_BIGENDIAN */
 +}
 +
 +/** Return a uint64_t value from <b>a</b> in host byte order. */
 +uint64_t
 +tor_ntohll(uint64_t a)
 +{
 +  return tor_htonll(a);
 +}
 +