mirror of
https://git.gnunet.org/libmicrohttpd.git
synced 2026-09-25 04:09:31 +03:00
test_str: fixed harmless sanitizer error
This commit is contained in:
@@ -4342,8 +4342,10 @@ check_str_from_uint8_pad (void)
|
||||
}
|
||||
for (pad = 0; pad <= 3; pad++)
|
||||
{
|
||||
size_t table_num = pad - 1;
|
||||
if (0 == pad)
|
||||
size_t table_num;
|
||||
if (0 != pad)
|
||||
table_num = pad - 1;
|
||||
else
|
||||
table_num = 0;
|
||||
|
||||
for (i = 0; i <= 255; i++)
|
||||
|
||||
Reference in New Issue
Block a user