Make constants constant

This commit is contained in:
Pieter Wuille 2013-04-30 15:57:40 +02:00
parent 43cbc85e14
commit f491cd35df
2 changed files with 4 additions and 3 deletions

View File

@ -29,7 +29,7 @@ typedef struct {
secp256k1_num_t lambda, a1b2, b1, a2;
} secp256k1_ge_consts_t;
static secp256k1_ge_consts_t *secp256k1_ge_consts = NULL;
static const secp256k1_ge_consts_t *secp256k1_ge_consts = NULL;
/** Initialize the group module. */
void static secp256k1_ge_start(void);

View File

@ -66,7 +66,7 @@ typedef struct {
secp256k1_ge_t fin; // -(sum(prec[j][0], j=0..63))
} secp256k1_ecmult_consts_t;
static secp256k1_ecmult_consts_t *secp256k1_ecmult_consts = NULL;
static const secp256k1_ecmult_consts_t *secp256k1_ecmult_consts = NULL;
static void secp256k1_ecmult_start(void) {
if (secp256k1_ecmult_consts != NULL)
@ -109,7 +109,8 @@ static void secp256k1_ecmult_stop(void) {
if (secp256k1_ecmult_consts == NULL)
return;
free(secp256k1_ecmult_consts);
secp256k1_ecmult_consts_t *c = (secp256k1_ecmult_consts_t*)secp256k1_ecmult_consts;
free(c);
secp256k1_ecmult_consts = NULL;
}