summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2016-03-31 10:09:57 +0200
committerTobias Klauser <tklauser@distanz.ch>2016-03-31 10:09:57 +0200
commitbabe9a1e8eeb5497756d4d7998dd1ca82c62a189 (patch)
treef3685efd0c44c4eab5b06962000d84a625e6105c /tests
parentc5d903dcda8aeba366026dcaeb866b067cbb0180 (diff)
Fix potential buffer overflow in strncat()
When using clang/llvm 3.8 to compile flex, the following warning is emitted: main.c:378:27: warning: the value of the size argument in 'strncat' is too large, might lead to a buffer overflow [-Wstrncat-size] strncat(m4_path, m4, sizeof(m4_path)); ^~~~~~~~~~~~~~~ main.c:378:27: note: change the argument to be the free space in the destination buffer minus the terminating null byte strncat(m4_path, m4, sizeof(m4_path)); ^~~~~~~~~~~~~~~ sizeof(m4_path) - strlen(m4_path) - 1 Fix it up by using the solution proposed by the warning message.
Diffstat (limited to 'tests')
0 files changed, 0 insertions, 0 deletions