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.
2 parents ff76d25 + 603a3fa commit 1352c18Copy full SHA for 1352c18
ext/mri/bcrypt_pbkdf_ext.c
@@ -8,7 +8,7 @@ static VALUE cBCryptPbkdfEngine;
8
*/
9
static VALUE bc_crypt_pbkdf(VALUE self, VALUE pass, VALUE salt, VALUE keylen, VALUE rounds) {
10
size_t okeylen = NUM2ULONG(keylen);
11
- u_int8_t* okey = xmalloc(keylen);
+ u_int8_t* okey = xmalloc(okeylen);
12
VALUE out;
13
14
int ret = bcrypt_pbkdf(
0 commit comments