3
0
mirror of https://git.kernel.org/pub/scm/network/wireless/iwd.git synced 2024-10-05 19:08:52 +02:00

wsc: Cast data pointer into char for UTF-8 validation

This commit is contained in:
Marcel Holtmann 2015-07-19 18:44:40 +02:00
parent 02c3645c69
commit 07301eb74f

View File

@ -214,7 +214,7 @@ static bool extract_utf8_string(struct wsc_attr_iter *iter, void *data,
break; break;
} }
if (!l_utf8_validate(p, i, NULL)) if (!l_utf8_validate((const char *) p, i, NULL))
return false; return false;
memcpy(out, p, i); memcpy(out, p, i);