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.

Fix a logf bug which would trigger undefined behaviour(and probably crash) when both DEBUG, CONFIG_PLATFORM & PLATFORM_HOSTED are enable

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27663 a1c6a512-1295-4272-9138-f99709370657

+3
+3
firmware/logf.c
··· 212 212 char buf[1024]; 213 213 vsnprintf(buf, sizeof buf, fmt, ap); 214 214 DEBUGF("%s\n", buf); 215 + /* restart va_list otherwise the result if undefined when vuprintf is called */ 216 + va_end(ap); 217 + va_start(ap, fmt); 215 218 #endif 216 219 217 220 vuprintf(logf_push, NULL, fmt, ap);