mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
audio/internal/readerdriver: Bug fix: Race condition on UNIX/Linux
Updates #1680
This commit is contained in:
parent
c7ac5a32b5
commit
ab5f5cbfea
@ -358,11 +358,8 @@ func (p *playerImpl) readSourceToBuffer() {
|
||||
return
|
||||
}
|
||||
|
||||
src := p.src
|
||||
p.m.Unlock()
|
||||
buf := make([]byte, maxBufferSize)
|
||||
n, err := src.Read(buf)
|
||||
p.m.Lock()
|
||||
n, err := p.src.Read(buf)
|
||||
|
||||
if err != nil && err != io.EOF {
|
||||
p.setErrorImpl(err)
|
||||
|
Loading…
Reference in New Issue
Block a user