exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit 051ccdf0e7be353c5dce3fa0cda44b7e1df0bb3c
parent c79a95c7d22f7cd566275057fd38135eac6b683b
Author: Christian Grothoff <christian@grothoff.org>
Date:   Thu, 23 Apr 2020 12:05:27 +0200

fix #6215~15757

Diffstat:
Msrc/util/amount.c | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/util/amount.c b/src/util/amount.c @@ -128,7 +128,8 @@ TALER_string_to_amount (const char *str, n = *value - '0'; if ( (amount->value * 10 < amount->value) || (amount->value * 10 + n < amount->value) || - (amount->value > MAX_AMOUNT_VALUE) ) + (amount->value > MAX_AMOUNT_VALUE) || + (amount->value * 10 + n > MAX_AMOUNT_VALUE) ) { GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Value specified in amount `%s' is too large\n",