mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-24 06:48:05 +01:00
Use tor_sscanf, not sscanf, in test_crypto.c
Fixes the 0.2.9 instance of bug #19213, which prevented mingw64 from working. This case wasn't in any released Tor.
This commit is contained in:
parent
b458a81cc5
commit
ed0ecd9f13
1 changed files with 1 additions and 1 deletions
|
@ -162,7 +162,7 @@ test_crypto_openssl_version(void *arg)
|
|||
tt_assert(!strcmpstart(version, h_version)); /* "-fips" suffix, etc */
|
||||
tt_assert(!strstr(version, "OpenSSL"));
|
||||
int a=-1,b=-1,c=-1;
|
||||
sscanf(version, "%d.%d.%d", &a,&b,&c);
|
||||
tor_sscanf(version, "%d.%d.%d", &a,&b,&c);
|
||||
tt_int_op(a, OP_GE, 0);
|
||||
tt_int_op(b, OP_GE, 0);
|
||||
tt_int_op(c, OP_GE, 0);
|
||||
|
|
Loading…
Add table
Reference in a new issue