From f60083f8366616da89f09ae4172caa867972ef21 Mon Sep 17 00:00:00 2001 From: Sean Pollock Date: Mon, 24 Feb 2025 11:08:21 -0500 Subject: [PATCH] [RSDK-9664] - Fix deadlock in hotSwappableMediaSource (#4804) --- gostream/swapper.go | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/gostream/swapper.go b/gostream/swapper.go index cdc2a5329af..08d62b51ac4 100644 --- a/gostream/swapper.go +++ b/gostream/swapper.go @@ -61,9 +61,9 @@ func (swapper *hotSwappableMediaSource[T, U]) Stream( errHandlers ...ErrorHandler, ) (MediaStream[T], error) { swapper.mu.RLock() - defer swapper.mu.RUnlock() if swapper.src == nil { + swapper.mu.RUnlock() return nil, errSwapperClosed } @@ -72,6 +72,12 @@ func (swapper *hotSwappableMediaSource[T, U]) Stream( errHandlers: errHandlers, cancelCtx: swapper.cancelCtx, } + + // Release the read lock before calling init to avoid potential deadlocks. + // This ensures that the Swap method can acquire the write lock if needed + // while the initialization process is ongoing. + swapper.mu.RUnlock() + stream.mu.Lock() defer stream.mu.Unlock() if err := stream.init(ctx); err != nil {