We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 334c32e commit 668cda0Copy full SHA for 668cda0
tommath_private.h
@@ -47,8 +47,9 @@ do { \
47
int fd_ = (digits); \
48
void* fm_ = (mem); \
49
if (fm_ != NULL) { \
50
- MP_ZERO_BUFFER(fm_, sizeof(mp_digit) * (size_t)fd_); \
51
- MP_FREE(fm_, sizeof(mp_digit) * (size_t)fd_); \
+ size_t fs_ = sizeof (mp_digit) * (size_t)fd_; \
+ MP_ZERO_BUFFER(fm_, fs_); \
52
+ MP_FREE(fm_, fs_); \
53
} \
54
} while (0)
55
#endif
0 commit comments