Rockbox open source high quality audio player as a Music Player Daemon
mpris rockbox mpd libadwaita audio rust zig deno
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

[BugFix] vorbis.c metadata invalid index when album art b64 is NULL

Change-Id: I9d08c2e2c903c00d0b2fd25e0dceea28113874a2

+8 -1
+8 -1
lib/rbcodec/metadata/vorbis.c
··· 327 327 break; 328 328 } 329 329 330 - val = (val << 6) | b64_codes[in[i] - B64_START_CHAR]; 330 + int index = in[i] - B64_START_CHAR; 331 + if (index < 0 || index >= (int)ARRAYLEN(b64_codes)) 332 + { 333 + out[len] = '\0'; 334 + break; 335 + } 336 + 337 + val = (val << 6) | b64_codes[index]; 331 338 332 339 if ((++i & 3) == 0) 333 340 {