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.

playlist: fix missing cleanup on OOM in playlist_resume()

Introduced by 3892773bd7, my fault for hitting merge
too quickly...

Change-Id: I18bbc3259a67664753a608a0175c59ee5a4241e0

+3 -2
+3 -2
apps/playlist.c
··· 3171 3171 if (handle < 0) 3172 3172 { 3173 3173 splashf(HZ * 2, "%s(): OOM", __func__); 3174 - return -1; 3174 + goto out_nolock; 3175 3175 } 3176 3176 3177 3177 playlist_write_lock(playlist); ··· 3535 3535 3536 3536 out: 3537 3537 playlist_write_unlock(playlist); 3538 + 3539 + out_nolock: 3538 3540 dc_thread_start(playlist, true); 3539 - 3540 3541 talk_buffer_set_policy(TALK_BUFFER_DEFAULT); 3541 3542 core_free(handle); 3542 3543 cpu_boost(false);