exchange

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

commit 77e8be0047c58590eaf97a5bc4a633eeaaa953d9
parent 1b89e8380d843d8f0d48a4ea8ecbae3f6d9039db
Author: Christian Grothoff <christian@grothoff.org>
Date:   Fri, 10 Apr 2020 21:30:47 +0200

include 0-terminator space

Diffstat:
Msrc/util/url.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/util/url.c b/src/util/url.c @@ -296,7 +296,7 @@ TALER_url_absolute_raw_va (const char *proto, len += strlen (proto) + strlen ("://") + strlen (host); len += strlen (prefix) + strlen (path); - len += calculate_argument_length (args); + len += calculate_argument_length (args) + 1; /* 0-terminator */ GNUNET_buffer_prealloc (&buf, len);