Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix lifetime issue with EventEngine endpoint wrapper. Before, we woul…
…d delete the wrapper in `grpc_take_wrapped_event_engine_endpoint`, which could destroy the wrapper before the refs became zero and lead to use-after-free / illegal instruction / segfault errors if callbacks return after the wrapper is destroyed. Now, we unref the wrapper instead of explicitly deleting it. PiperOrigin-RevId: 705673089
- Loading branch information