Commit 392832fc authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '78efc69e'

* commit '78efc69e':
  rtmpdh: Make sure ret is initialized in the nettle version of bn_hex2bn
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents c7bd6a54 78efc69e
......@@ -77,6 +77,8 @@
bn_new(bn); \
if (bn) \
ret = (mpz_set_str(bn, buf, 16) == 0); \
else \
ret = 1; \
} while (0)
#define bn_modexp(bn, y, q, p) mpz_powm(bn, y, q, p)
#define bn_random(bn, num_bytes) \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment