diff --git a/src/scratch_impl.h b/src/scratch_impl.h index 3a3991035..4b36da88b 100644 --- a/src/scratch_impl.h +++ b/src/scratch_impl.h @@ -45,10 +45,10 @@ static size_t secp256k1_scratch_max_allocation(const secp256k1_callback* error_c for (i = 0; i < scratch->frame; i++) { allocated += scratch->frame_size[i]; } - if (scratch->max_size - allocated <= objects * ALIGNMENT) { + if (scratch->max_size - allocated <= objects * (ALIGNMENT - 1)) { return 0; } - return scratch->max_size - allocated - objects * ALIGNMENT; + return scratch->max_size - allocated - objects * (ALIGNMENT - 1); } static int secp256k1_scratch_allocate_frame(const secp256k1_callback* error_callback, secp256k1_scratch* scratch, size_t n, size_t objects) { @@ -60,7 +60,7 @@ static int secp256k1_scratch_allocate_frame(const secp256k1_callback* error_call } if (n <= secp256k1_scratch_max_allocation(error_callback, scratch, objects)) { - n += objects * ALIGNMENT; + n += objects * (ALIGNMENT - 1); scratch->current_frame = scratch->data; scratch->data = (void *) ((char *) scratch->data + n); scratch->frame_size[scratch->frame] = n; diff --git a/src/tests.c b/src/tests.c index 75cf2b0a7..d47d713af 100644 --- a/src/tests.c +++ b/src/tests.c @@ -356,7 +356,7 @@ void run_scratch_tests(void) { /* ...but pushing a new stack frame does affect the max allocation */ CHECK(secp256k1_scratch_allocate_frame(&none->error_callback, scratch, 500, 1) == 1); - CHECK(secp256k1_scratch_max_allocation(&none->error_callback, scratch, 1) < 500); /* 500 - ALIGNMENT */ + CHECK(secp256k1_scratch_max_allocation(&none->error_callback, scratch, 1) < 500); /* 500 - (ALIGNMENT - 1) */ CHECK(secp256k1_scratch_alloc(&none->error_callback, scratch, 500) != NULL); CHECK(secp256k1_scratch_alloc(&none->error_callback, scratch, 500) == NULL);