-
- Downloads
Fix a TSAN reported race
I think this was the frequent crash in uds_cancel_after_invoke. The race happens because a channel is deleted concurrently with an address being resolved (and UDS gets the resolution fast enough for this to actually happen). The fix is to guarantee no callbacks will be made after cancel has been called (which was the original guaranteee that got lost somewhere).
Showing
- src/core/channel/client_setup.c 29 additions, 0 deletionssrc/core/channel/client_setup.c
- src/core/channel/client_setup.h 6 additions, 0 deletionssrc/core/channel/client_setup.h
- src/core/surface/channel_create.c 4 additions, 1 deletionsrc/core/surface/channel_create.c
- src/core/surface/secure_channel_create.c 4 additions, 1 deletionsrc/core/surface/secure_channel_create.c
Please register or sign in to comment