Skip to content

Conversation

hg42
Copy link

@hg42 hg42 commented Aug 10, 2023

fixes this error:

main.c:824:7: error: ‘write’ reading 18 bytes from a region of size 17 [-Werror=stringop-overread]
824 | if (write (1, "SIGNAL received\n", 18) < 0) {

the string is 16 chars long (including the \n but excluding the \0, which is counted in the error message)

fixes this error:

main.c:824:7: error: ‘write’ reading 18 bytes from a region of size 17 [-Werror=stringop-overread]
  824 |   if (write (1, "SIGNAL received\n", 18) < 0) {

the string is 16 chars long (including the \n but excluding the \0, that is included in that 17 of the error message)
@hg42 hg42 mentioned this pull request Aug 10, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants