include 0-terminator space

This commit is contained in:
Christian Grothoff 2020-04-10 21:30:47 +02:00
parent 1b89e8380d
commit 77e8be0047
No known key found for this signature in database
GPG Key ID: 939E6BE1E29FC3CC

View File

@ -296,7 +296,7 @@ TALER_url_absolute_raw_va (const char *proto,
len += strlen (proto) + strlen ("://") + strlen (host); len += strlen (proto) + strlen ("://") + strlen (host);
len += strlen (prefix) + strlen (path); len += strlen (prefix) + strlen (path);
len += calculate_argument_length (args); len += calculate_argument_length (args) + 1; /* 0-terminator */
GNUNET_buffer_prealloc (&buf, GNUNET_buffer_prealloc (&buf,
len); len);