-
Notifications
You must be signed in to change notification settings - Fork 7k
[Core] fix heap corruption in RayletClient causing driver crash (SIGABRT: "corrupted size vs. prev_size") #58660
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -39,7 +39,8 @@ namespace rpc { | |
|
|
||
| /// Raylet client is responsible for communication with raylet. It implements | ||
| /// [RayletClientInterface] and works on worker registration, lease management, etc. | ||
| class RayletClient : public RayletClientInterface { | ||
| class RayletClient : public RayletClientInterface, | ||
| public std::enable_shared_from_this<RayletClient> { | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bug: Ensure
|
||
| public: | ||
| /// Connect to the raylet. | ||
| /// | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.