diff options
| author | Christian Grothoff <christian@grothoff.org> | 2023-05-10 01:01:37 +0200 | 
|---|---|---|
| committer | Christian Grothoff <christian@grothoff.org> | 2023-05-10 01:01:37 +0200 | 
| commit | c014acf3c4ccf03109b0141d6b68d4f464464e19 (patch) | |
| tree | 936413646c36985cffeb0da81f4f71d27422c48d /src/exchange/taler-exchange-httpd.c | |
| parent | 3ebd0a70b2bba2e64615c0973477a610e117c97a (diff) | |
always use GNUNET_memcpy
Diffstat (limited to 'src/exchange/taler-exchange-httpd.c')
| -rw-r--r-- | src/exchange/taler-exchange-httpd.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/src/exchange/taler-exchange-httpd.c b/src/exchange/taler-exchange-httpd.c index 97cf54c8..6c6398bc 100644 --- a/src/exchange/taler-exchange-httpd.c +++ b/src/exchange/taler-exchange-httpd.c @@ -932,9 +932,9 @@ proceed_with_handler (struct TEH_RequestContext *rc,      /* Parse command-line arguments */      /* make a copy of 'url' because 'strtok_r()' will modify */ -    memcpy (d, -            url, -            ulen); +    GNUNET_memcpy (d, +                   url, +                   ulen);      i = 0;      args[i++] = strtok_r (d, "/", &sp);      while ( (NULL != args[i - 1]) && | 
