Avoid calling fclose(...) with an invalid argument
This commit is contained in:
parent
c95f6f1360
commit
5aae5b5bb2
|
@ -4924,7 +4924,9 @@ int main(int argc, char **argv) {
|
||||||
seed16[6] ^= t >> 48;
|
seed16[6] ^= t >> 48;
|
||||||
seed16[7] ^= t >> 56;
|
seed16[7] ^= t >> 56;
|
||||||
}
|
}
|
||||||
fclose(frand);
|
if (frand) {
|
||||||
|
fclose(frand);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
secp256k1_rand_seed(seed16);
|
secp256k1_rand_seed(seed16);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue