Skip to content

write used the wrong char count (different variant of #1766) - #1794

Open
hg42 wants to merge 1 commit into
vysheng:masterfrom
hg42:hg42-fix-write-length
Open

write used the wrong char count (different variant of #1766)#1794
hg42 wants to merge 1 commit into
vysheng:masterfrom
hg42:hg42-fix-write-length

Conversation

@hg42

@hg42 hg42 commented Aug 10, 2023

Copy link
Copy Markdown

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
@ash-m

ash-m commented Dec 11, 2025

Copy link
Copy Markdown

I still get this error; can someone merge this?

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.

3 participants