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.

Asan fix warning for 1-bit vert

1-bit vertical displays overread the buffer due to the way the
packing works, this isn't the hottest path anyway but
we can check if height <= 8 and make stride 0 so the dummy data
gets the beginning of the data instead

Change-Id: I88ab4dc37bfd2d680d125f964beafe0ddfb00645

authored by

William Wilgus and committed by
Solomon Peachy
42a9582c ae3b3473

+3
+3
firmware/drivers/lcd-1bit-vert.c
··· 402 402 } 403 403 else 404 404 { 405 + if (height <= 8) 406 + stride = 0; /* ASAN fix keep from reading beyond buffer */ 407 + 405 408 dst_end = dst + width; 406 409 do 407 410 {