Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

patch_parse: fix segfault due to line containing static contents #5179

Merged
merged 1 commit into from
Jul 20, 2019

Conversation

pks-t
Copy link
Member

@pks-t pks-t commented Jul 20, 2019

With commit dedf70a (patch_parse: do not depend on parsed buffer's
lifetime, 2019-07-05), all lines of the patch are allocated with
strdup to make lifetime of the parsed patch independent of the buffer
that is currently being parsed. In patch b089328 (patch_parse: ensure
valid patch output with EOFNL, 2019-07-11), we introduced another
code location where we add lines to the parsed patch. But as that one
was implemented via a separate pull request, it wasn't converted to use
strdup, as well. As a consequence, we generate a segfault when trying
to deallocate the potentially static buffer that's now in some of the
lines.

Use git__strdup to fix the issue.


This bug has been introduced due to #5158 and #5159 having bad interactions with each other.

With commit dedf70a (patch_parse: do not depend on parsed buffer's
lifetime, 2019-07-05), all lines of the patch are allocated with
`strdup` to make lifetime of the parsed patch independent of the buffer
that is currently being parsed. In patch b089328 (patch_parse: ensure
valid patch output with EOFNL, 2019-07-11), we introduced another
code location where we add lines to the parsed patch. But as that one
was implemented via a separate pull request, it wasn't converted to use
`strdup`, as well. As a consequence, we generate a segfault when trying
to deallocate the potentially static buffer that's now in some of the
lines.

Use `git__strdup` to fix the issue.
@ethomson
Copy link
Member

Oops, nice catch.

@pks-t
Copy link
Member Author

pks-t commented Jul 20, 2019

Yeah. Unfortunately this breaks all current test runs, so I'd like to get this in as quick as possible

@ethomson
Copy link
Member

Yeah. Unfortunately this breaks all current test runs, so I'd like to get this in as quick as possible

Indeed. I'm going to go ahead and merge it.

@ethomson ethomson merged commit 1f44079 into libgit2:master Jul 20, 2019
@pks-t
Copy link
Member Author

pks-t commented Jul 20, 2019

Thanks a lot for the fast lane! :)

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.

None yet

2 participants