Skip to content

Commit 129ba3c

Browse files
committed
Remove size field
The `Secp256k1` `size` field is a cached value that we get using `ffi::secp256k1_context_preallocated_size` or `ffi::secp256k1_context_preallocated_clone_size`, both of which just return the result of `sizeof(rustsecp256k1_v0_6_1_context)`. Instead of caching this value we can just call `ffi::secp256k1_context_preallocated_clone_size` in the `Drop` implementation.
1 parent 4864a33 commit 129ba3c

File tree

2 files changed

+8
-25
lines changed

2 files changed

+8
-25
lines changed

src/context.rs

+3-18
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,6 @@ mod alloc_only {
201201
ffi::secp256k1_context_preallocated_create(ptr as *mut c_void, C::FLAGS)
202202
},
203203
phantom: PhantomData,
204-
size,
205204
};
206205

207206
#[cfg(all(
@@ -259,7 +258,6 @@ mod alloc_only {
259258
ffi::secp256k1_context_preallocated_clone(self.ctx, ptr as *mut c_void)
260259
},
261260
phantom: PhantomData,
262-
size,
263261
}
264262
}
265263
}
@@ -315,7 +313,6 @@ impl<'buf, C: Context + 'buf> Secp256k1<C> {
315313
)
316314
},
317315
phantom: PhantomData,
318-
size: 0, // We don't care about the size because it's the caller responsibility to deallocate.
319316
})
320317
}
321318
}
@@ -344,11 +341,7 @@ impl<'buf> Secp256k1<AllPreallocated<'buf>> {
344341
pub unsafe fn from_raw_all(
345342
raw_ctx: *mut ffi::Context,
346343
) -> ManuallyDrop<Secp256k1<AllPreallocated<'buf>>> {
347-
ManuallyDrop::new(Secp256k1 {
348-
ctx: raw_ctx,
349-
phantom: PhantomData,
350-
size: 0, // We don't care about the size because it's the caller responsibility to deallocate.
351-
})
344+
ManuallyDrop::new(Secp256k1 { ctx: raw_ctx, phantom: PhantomData })
352345
}
353346
}
354347

@@ -378,11 +371,7 @@ impl<'buf> Secp256k1<SignOnlyPreallocated<'buf>> {
378371
pub unsafe fn from_raw_signing_only(
379372
raw_ctx: *mut ffi::Context,
380373
) -> ManuallyDrop<Secp256k1<SignOnlyPreallocated<'buf>>> {
381-
ManuallyDrop::new(Secp256k1 {
382-
ctx: raw_ctx,
383-
phantom: PhantomData,
384-
size: 0, // We don't care about the size because it's the caller responsibility to deallocate.
385-
})
374+
ManuallyDrop::new(Secp256k1 { ctx: raw_ctx, phantom: PhantomData })
386375
}
387376
}
388377

@@ -412,10 +401,6 @@ impl<'buf> Secp256k1<VerifyOnlyPreallocated<'buf>> {
412401
pub unsafe fn from_raw_verification_only(
413402
raw_ctx: *mut ffi::Context,
414403
) -> ManuallyDrop<Secp256k1<VerifyOnlyPreallocated<'buf>>> {
415-
ManuallyDrop::new(Secp256k1 {
416-
ctx: raw_ctx,
417-
phantom: PhantomData,
418-
size: 0, // We don't care about the size because it's the caller responsibility to deallocate.
419-
})
404+
ManuallyDrop::new(Secp256k1 { ctx: raw_ctx, phantom: PhantomData })
420405
}
421406
}

src/lib.rs

+5-7
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,6 @@ impl std::error::Error for Error {
373373
pub struct Secp256k1<C: Context> {
374374
ctx: *mut ffi::Context,
375375
phantom: PhantomData<C>,
376-
size: usize,
377376
}
378377

379378
// The underlying secp context does not contain any references to memory it does not own.
@@ -390,8 +389,9 @@ impl<C: Context> Eq for Secp256k1<C> {}
390389
impl<C: Context> Drop for Secp256k1<C> {
391390
fn drop(&mut self) {
392391
unsafe {
392+
let size = ffi::secp256k1_context_preallocated_clone_size(self.ctx);
393393
ffi::secp256k1_context_preallocated_destroy(self.ctx);
394-
C::deallocate(self.ctx as _, self.size);
394+
C::deallocate(self.ctx as _, size);
395395
}
396396
}
397397
}
@@ -558,13 +558,11 @@ mod tests {
558558
let ctx_sign = unsafe { ffi::secp256k1_context_create(SignOnlyPreallocated::FLAGS) };
559559
let ctx_vrfy = unsafe { ffi::secp256k1_context_create(VerifyOnlyPreallocated::FLAGS) };
560560

561-
let size = 0;
562-
let full: Secp256k1<AllPreallocated> =
563-
Secp256k1 { ctx: ctx_full, phantom: PhantomData, size };
561+
let full: Secp256k1<AllPreallocated> = Secp256k1 { ctx: ctx_full, phantom: PhantomData };
564562
let sign: Secp256k1<SignOnlyPreallocated> =
565-
Secp256k1 { ctx: ctx_sign, phantom: PhantomData, size };
563+
Secp256k1 { ctx: ctx_sign, phantom: PhantomData };
566564
let vrfy: Secp256k1<VerifyOnlyPreallocated> =
567-
Secp256k1 { ctx: ctx_vrfy, phantom: PhantomData, size };
565+
Secp256k1 { ctx: ctx_vrfy, phantom: PhantomData };
568566

569567
let (sk, pk) = full.generate_keypair(&mut rand::thread_rng());
570568
let msg = Message::from_slice(&[2u8; 32]).unwrap();

0 commit comments

Comments
 (0)