Skip to content
Snippets Groups Projects
Commit 4c7f1e0d authored by Timo Teräs's avatar Timo Teräs
Browse files

apk: isalnum() takes only unsigned char values add explicit check for that

parent 2cfde12c
No related branches found
No related tags found
No related merge requests found
......@@ -126,7 +126,8 @@ int main(int argc, char **argv)
}
for (opt = &generic_options[0], sopt = short_options;
opt->name != NULL; opt++) {
if (opt->flag == NULL && isalnum(opt->val)) {
if (opt->flag == NULL &&
opt->val <= 0xff && isalnum(opt->val)) {
*(sopt++) = opt->val;
if (opt->has_arg != no_argument)
*(sopt++) = ':';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment