diff options
Diffstat (limited to 'src/exchangedb')
| -rw-r--r-- | src/exchangedb/bench_db.c | 12 | ||||
| -rw-r--r-- | src/exchangedb/pg_lookup_records_by_table.c | 6 | 
2 files changed, 9 insertions, 9 deletions
diff --git a/src/exchangedb/bench_db.c b/src/exchangedb/bench_db.c index a85834d1..302d2306 100644 --- a/src/exchangedb/bench_db.c +++ b/src/exchangedb/bench_db.c @@ -169,9 +169,9 @@ bem_insert (struct GNUNET_PQ_Context *conn,    GNUNET_CRYPTO_hash (&b,                        sizeof (b),                        &hc); -  memcpy (&ihc, -          &hc, -          sizeof (ihc)); +  GNUNET_memcpy (&ihc, +                 &hc, +                 sizeof (ihc));    {      struct GNUNET_PQ_QueryParam params[] = {        GNUNET_PQ_query_param_auto_from_type (&hc), @@ -265,9 +265,9 @@ bem_select (struct GNUNET_PQ_Context *conn,    GNUNET_CRYPTO_hash (&b,                        sizeof (b),                        &hc); -  memcpy (&ihc, -          &hc, -          sizeof (ihc)); +  GNUNET_memcpy (&ihc, +                 &hc, +                 sizeof (ihc));    {      struct GNUNET_PQ_QueryParam params[] = {        GNUNET_PQ_query_param_uint32 (&ihc), diff --git a/src/exchangedb/pg_lookup_records_by_table.c b/src/exchangedb/pg_lookup_records_by_table.c index efa0fec5..534e9a1d 100644 --- a/src/exchangedb/pg_lookup_records_by_table.c +++ b/src/exchangedb/pg_lookup_records_by_table.c @@ -1118,9 +1118,9 @@ lrbt_cb_table_refresh_transfer_keys (void *cls,        ctx->error = true;        return;      } -    memcpy (&td.details.refresh_transfer_keys.tprivs[0], -            tpriv, -            tpriv_size); +    GNUNET_memcpy (&td.details.refresh_transfer_keys.tprivs[0], +                   tpriv, +                   tpriv_size);      ctx->cb (ctx->cb_cls,               &td);      GNUNET_PQ_cleanup_result (rs);  | 
