diff options
-rw-r--r-- | apps/playlist.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/playlist.c b/apps/playlist.c index 72d126bdc5..af733f486c 100644 --- a/apps/playlist.c +++ b/apps/playlist.c @@ -2122,6 +2122,7 @@ int playlist_resume(void) * default buflib buffers can be moved around which must be avoided */ static struct buflib_callbacks dummy_ops; /* use mp3 buffer for maximum load speed */ + talk_buffer_set_policy(TALK_BUFFER_LOOSE); /* back off voice buffer */ handle = core_alloc_maximum("temp", &buflen, &dummy_ops); if (handle < 0) panicf("%s(): OOM", __func__); @@ -2506,6 +2507,7 @@ int playlist_resume(void) #endif out: + talk_buffer_set_policy(TALK_BUFFER_DEFAULT); core_free(handle); return result; } |