-
- Downloads
Avoid passing the wrong size to strncpy - simply use strcpy (#5311)
We have already validated that `p` is large enough to store `name`. In `strncpy` the `len` parameter should generally be the length of the target buffer, not the source buffer.
Loading
Please register or sign in to comment