Skip to content
Snippets Groups Projects
Commit d7942cd9 authored by Sebastian Meiling's avatar Sebastian Meiling
Browse files

dist/tools: fix tunslip6 strncat num param

Cppcheck was (correctly) warning here that concat to strings might
result in buffer overflow because the terminating `\0` was not considered.
This is fixed here, making the cppcheck suppression also obsolete.
parent 3f811c44
No related branches found
No related tags found
No related merge requests found
...@@ -651,7 +651,7 @@ devopen(const char *dev, int flags) ...@@ -651,7 +651,7 @@ devopen(const char *dev, int flags)
char t[1024]; char t[1024];
strcpy(t, "/dev/"); strcpy(t, "/dev/");
/* cppcheck-suppress bufferAccessOutOfBounds /* cppcheck-suppress bufferAccessOutOfBounds
* reason: seems to be a cppcheck bug */ * (reason: seems to be a bug in cppcheck 1.7x) */
strncat(t, dev, sizeof(t) - 5); strncat(t, dev, sizeof(t) - 5);
return open(t, flags); return open(t, flags);
} }
......
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