mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-06 19:41:15 +01:00
Fix #19063: Add check in utility macro
This commit is contained in:
@@ -1111,6 +1111,9 @@ tor_digest256_is_zero(const char *digest)
|
||||
/* Were there unexpected unconverted characters? */ \
|
||||
if (!next && *endptr) \
|
||||
goto err; \
|
||||
/* Illogical (max, min) inputs? */ \
|
||||
if (max < min) \
|
||||
goto err; \
|
||||
/* Is r within limits? */ \
|
||||
if (r < min || r > max) \
|
||||
goto err; \
|
||||
|
||||
Reference in New Issue
Block a user