diff options
author | Marcello Stanisci <stanisci.m@gmail.com> | 2018-07-23 14:32:20 +0200 |
---|---|---|
committer | Marcello Stanisci <stanisci.m@gmail.com> | 2018-07-23 14:32:20 +0200 |
commit | 6df3227c241e360b84accabff03a8d316ad2af21 (patch) | |
tree | ce08bd1cdd9b6ac0f07720434366d280455b0066 /src/wire-plugins | |
parent | 9942032ae9f48cc08dcfc57382d2bd4226b898b3 (diff) |
Wire-plugin interface.
Add methods signatures to register merchants at banking institutions.
Diffstat (limited to 'src/wire-plugins')
-rw-r--r-- | src/wire-plugins/plugin_wire_taler-bank.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wire-plugins/plugin_wire_taler-bank.c b/src/wire-plugins/plugin_wire_taler-bank.c index c2282bc4b..2c967a1b2 100644 --- a/src/wire-plugins/plugin_wire_taler-bank.c +++ b/src/wire-plugins/plugin_wire_taler-bank.c @@ -712,6 +712,7 @@ taler_bank_execute_wire_transfer (void *cls, origin_account_url = &buf[sizeof (struct BufFormatP)]; left = buf_size - sizeof (struct BufFormatP); slen = strlen (origin_account_url) + 1; + /* make sure there's enough space to accomodate what's been taken now */ GNUNET_assert (left >= slen); left -= slen; if (0 == left) |