mirror of
https://github.com/mackron/miniaudio.git
synced 2026-04-24 09:14:04 +02:00
Fix a bug when decoding from memory.
This commit is contained in:
@@ -52780,6 +52780,10 @@ static ma_result ma_decoder__on_read_memory(ma_decoder* pDecoder, void* pBufferO
|
|||||||
|
|
||||||
MA_ASSERT(pDecoder->data.memory.dataSize >= pDecoder->data.memory.currentReadPos);
|
MA_ASSERT(pDecoder->data.memory.dataSize >= pDecoder->data.memory.currentReadPos);
|
||||||
|
|
||||||
|
if (pBytesRead != NULL) {
|
||||||
|
*pBytesRead = 0;
|
||||||
|
}
|
||||||
|
|
||||||
bytesRemaining = pDecoder->data.memory.dataSize - pDecoder->data.memory.currentReadPos;
|
bytesRemaining = pDecoder->data.memory.dataSize - pDecoder->data.memory.currentReadPos;
|
||||||
if (bytesToRead > bytesRemaining) {
|
if (bytesToRead > bytesRemaining) {
|
||||||
bytesToRead = bytesRemaining;
|
bytesToRead = bytesRemaining;
|
||||||
|
|||||||
Reference in New Issue
Block a user