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.

winsim: Fix filesystem access

Corrects a regression introduced in

a2c10f6189e078977db95e8493d79133d9b7c1e3

Change-Id: I9a27a6192ff6a9d1be7829d23d23dbf98b84feae

+2 -2
+2 -2
firmware/target/hosted/filesystem-win32.c
··· 66 66 static unsigned short * strcpy_utf8utf16(unsigned short *buffer, 67 67 const unsigned char *utf8) 68 68 { 69 - for (wchar_t *ucs = buffer; *ucs ; ucs++) { 70 - ucschar_t cp; 69 + ucschar_t cp = 0xffffffff; 70 + for (wchar_t *ucs = buffer; cp ; ucs++) { 71 71 utf8 = utf8decode(utf8, &cp); 72 72 #ifdef UNICODE32 73 73 if (cp > 0x10000) {