Skip to content

Commit a2fcbd5

Browse files
committed
fixup HMAC
1 parent 5cd60d1 commit a2fcbd5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Modules/hmacmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -778,7 +778,7 @@ _hmac_new_impl(PyObject *module, PyObject *keyobj, PyObject *msgobj,
778778
* where it is not yet possible to have concurrent access. */
779779
HASHLIB_EXTERNAL_INSTRUCTIONS_UNLOCKED(
780780
msg.len,
781-
_hacl_hmac_state_update(self->state, msg.buf, msg.len)
781+
rc = _hacl_hmac_state_update(self->state, msg.buf, msg.len)
782782
);
783783
PyBuffer_Release(&msg);
784784
#ifndef NDEBUG

0 commit comments

Comments
 (0)