gb.openssl: Dangling parenthesis.

[GB.OPENSSL]
* BUG: Remove dangling parenthesis.
This commit is contained in:
Andy 2020-05-14 08:34:09 -07:00 committed by Tobias Boege
parent 0eb47b25bb
commit b1fbac987e

View file

@ -111,7 +111,7 @@ BEGIN_METHOD(OpenSSL_Pbkdf2, GB_STRING password; GB_STRING salt; GB_LONG iterati
GB.Error("Invalid Parameter: method not a supported digest");
return;
}
memset(hash, 0, lKey));
memset(hash, 0, lKey);
ret = PKCS5_PBKDF2_HMAC((const char *) STRING(password), LENGTH(password), (const unsigned char *) STRING(salt),
LENGTH(salt), (int) VARG(iterations), emethod, lKey, (unsigned char *) hash);
if (ret == 0) {