-
Notifications
You must be signed in to change notification settings - Fork 29.6k
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
[v12.x] http2: patch double-free error due to handling of rst_stream #39527
Closed
kumarak
wants to merge
1
commit into
nodejs:v12.x-staging
from
kumarak:kumarak/v12.x-stagging-build-error
Closed
[v12.x] http2: patch double-free error due to handling of rst_stream #39527
kumarak
wants to merge
1
commit into
nodejs:v12.x-staging
from
kumarak:kumarak/v12.x-stagging-build-error
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
richardlau
changed the title
http2: patch double-free error due to handling of rst_stream in v12.x-staging
[v12.x] http2: patch double-free error due to handling of rst_stream
Jul 26, 2021
cc @nodejs/http2 |
richardlau
added
the
fast-track
PRs that do not need to wait for 48 hours to land.
label
Jul 26, 2021
guybedford
force-pushed
the
v12.x-staging
branch
from
July 26, 2021 15:15
632a3ae
to
1b7af5b
Compare
mcollina
approved these changes
Jul 26, 2021
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm and +1 to fast track
richardlau
approved these changes
Jul 26, 2021
richardlau
force-pushed
the
kumarak/v12.x-stagging-build-error
branch
from
July 26, 2021 16:40
f80771d
to
ba2ac7b
Compare
Rebased as v12.x-staging was force-pushed. |
BethGriggs
approved these changes
Jul 26, 2021
github-actions
bot
added
c++
Issues and PRs that require attention from people who are familiar with C++.
http2
Issues or PRs related to the http2 subsystem.
needs-ci
PRs that need a full CI run.
v12.x
labels
Jul 26, 2021
Landed in e47d2d2. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
c++
Issues and PRs that require attention from people who are familiar with C++.
fast-track
PRs that do not need to wait for 48 hours to land.
http2
Issues or PRs related to the http2 subsystem.
needs-ci
PRs that need a full CI run.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The PR patches the double-free error due to handling of
RST_STREAM
frame with cancel code.The previous PR(#39423) causes build failure with
v12.x-staging
branch since the interfaces to check thesession flags changes. The changes backport APIs to
check the status flag of
Http2Session
as well.Ref: #39423
Fixes: #38964