1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00

use sizeof instead of strlen for two constant strings

This commit is contained in:
sgerwk 2020-09-27 00:40:07 +02:00
parent 516cee7706
commit ae38be0fe0

View File

@ -1054,7 +1054,7 @@ subst_file(unsigned char *prog, unsigned char *file, unsigned char *uri)
replace = file; replace = file;
else if (*prog == 'u') { else if (*prog == 'u') {
replace = uri; replace = uri;
if (! memcmp(uri, "data:", strlen("data:"))) if (!memcmp(uri, "data:", sizeof("data:") - 1))
truncate = 1; truncate = 1;
} }
else if (*prog == '%') else if (*prog == '%')
@ -1083,7 +1083,8 @@ subst_file(unsigned char *prog, unsigned char *file, unsigned char *uri)
strlen(replace)); strlen(replace));
else { else {
add_shell_quoted_to_string(&name, replace, 40); add_shell_quoted_to_string(&name, replace, 40);
add_shell_quoted_to_string(&name, "...", 3); add_shell_quoted_to_string(&name,
"...", sizeof("...") - 1);
} }
#endif #endif
prog++; prog++;