Fix incorrect parameter value in call to BigInt() when initializing BnetSRP3::I, which caused a buffer overflow
This commit is contained in:
parent
92211ef22d
commit
6f5b27a8b0
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ namespace pvpgn
|
|||
|
||||
BigInt BnetSRP3::N = BigInt(bnetsrp3_N, 32);
|
||||
BigInt BnetSRP3::g = BigInt(bnetsrp3_g);
|
||||
BigInt BnetSRP3::I = BigInt(bnetsrp3_I, 32);
|
||||
BigInt BnetSRP3::I = BigInt(bnetsrp3_I, 20);
|
||||
|
||||
int
|
||||
BnetSRP3::init(const char* username_, const char* password_, BigInt* salt_)
|
||||
|
|
Loading…
Add table
Reference in a new issue