vvfedorenko
vvfedorenko
The reason for this error is using CONFIG_FORTIFY_SOURCE=y kernel config option which prevents writing over several fields in structures. Even though the code doesn't corrupt memory, the kernel is pretty...
The fix is pushed to the repo, could you please test it?
> as per #227, strlcopy can just be replaced by strscpy Except that strscpy doesn't exist till linux 4.3. but you might be right, it's better to switch to safe...
@aabc could you please merge it?
Oops, `strscpy` is not a function, it's a MACRO starting from 6.9 while in 6.8 it was a function. Have to check it differently.