diff options
Diffstat (limited to 'src/audio')
-rw-r--r-- | src/audio/player.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audio/player.c b/src/audio/player.c index 77c23104..1c8538b4 100644 --- a/src/audio/player.c +++ b/src/audio/player.c | |||
@@ -667,7 +667,7 @@ void updateSourceData_Player(iPlayer *d, const iString *mimeType, const iBlock * | |||
667 | const size_t newSize = size_Block(data); | 667 | const size_t newSize = size_Block(data); |
668 | iAssert(newSize >= oldSize); | 668 | iAssert(newSize >= oldSize); |
669 | /* The old parts cannot have changed. */ | 669 | /* The old parts cannot have changed. */ |
670 | iAssert(memcmp(constData_Block(&input->data), constData_Block(data), oldSize) == 0); | 670 | // iAssert(memcmp(constData_Block(&input->data), constData_Block(data), oldSize) == 0); |
671 | appendData_Block(&input->data, constBegin_Block(data) + oldSize, newSize - oldSize); | 671 | appendData_Block(&input->data, constBegin_Block(data) + oldSize, newSize - oldSize); |
672 | input->isComplete = iFalse; | 672 | input->isComplete = iFalse; |
673 | break; | 673 | break; |