From 0912034706bf623f7f5f7d8713d688613820e63d Mon Sep 17 00:00:00 2001 From: philippe44 Date: Fri, 4 Aug 2023 22:05:27 -0700 Subject: [PATCH] fix typo - release --- components/squeezelite/vorbis.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/squeezelite/vorbis.c b/components/squeezelite/vorbis.c index b0078bb4..5c1ebeb8 100644 --- a/components/squeezelite/vorbis.c +++ b/components/squeezelite/vorbis.c @@ -140,7 +140,7 @@ static int get_ogg_packet(void) { while (!(status = OG(&go, stream_packetout, &v->state, &v->packet)) && bytes) { // if sync_pageout (or sync_pageseek) is not called first, sync buffers build ups - while (!(status = OG(&go, sync_pageout, &u->sync, &u->page)) && bytes) { + while (!(status = OG(&go, sync_pageout, &v->sync, &v->page)) && bytes) { size_t consumed = min(bytes, 4096); char* buffer = OG(&gv, sync_buffer, &v->sync, consumed); memcpy(buffer, streambuf->readp, consumed);