refactor link_bc() for GNUnet_memcmp
This commit is contained in:
parent
9c515d218b
commit
ddea1bf407
@ -506,7 +506,7 @@ do_link_retry (void *cls)
|
|||||||
static void
|
static void
|
||||||
link_cb (void *cls,
|
link_cb (void *cls,
|
||||||
unsigned int http_status,
|
unsigned int http_status,
|
||||||
enum TALER_ErrorCode ec,
|
enum TALER_ErrorCode ec,
|
||||||
unsigned int num_coins,
|
unsigned int num_coins,
|
||||||
const struct TALER_CoinSpendPrivateKeyP *coin_privs,
|
const struct TALER_CoinSpendPrivateKeyP *coin_privs,
|
||||||
const struct TALER_DenominationSignature *sigs,
|
const struct TALER_DenominationSignature *sigs,
|
||||||
@ -591,10 +591,9 @@ link_cb (void *cls,
|
|||||||
/* check that the coins match */
|
/* check that the coins match */
|
||||||
for (unsigned int i=0;i<num_coins;i++)
|
for (unsigned int i=0;i<num_coins;i++)
|
||||||
for (unsigned int j=i+1;j<num_coins;j++)
|
for (unsigned int j=i+1;j<num_coins;j++)
|
||||||
if (0 == memcmp
|
if (0 == GNUNET_memcmp
|
||||||
(&coin_privs[i], &coin_privs[j],
|
(&coin_privs[i], &coin_privs[j]))
|
||||||
sizeof (struct TALER_CoinSpendPrivateKeyP)))
|
GNUNET_break (0);
|
||||||
GNUNET_break (0);
|
|
||||||
/* Note: coins might be legitimately permutated in here... */
|
/* Note: coins might be legitimately permutated in here... */
|
||||||
found = 0;
|
found = 0;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user