We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 138481f commit 607107eCopy full SHA for 607107e
code/logic/input.c
@@ -492,7 +492,7 @@ int fossil_io_validate_is_suspicious_user(const char *input) {
492
if (strchr(input, '@') || fossil_io_cstring_case_search(input, "http") != NULL) return 1;
493
494
// 9. Looks like a UUID or hex string
495
- int hex_count = 0;
+ size_t hex_count = 0;
496
for (size_t i = 0; i < len; i++) {
497
if (isxdigit((unsigned char)input[i])) hex_count++;
498
}
0 commit comments