Bump liberty, check the connection while searching
All checks were successful
Alpine 3.20 Success
Arch Linux AUR Success
OpenBSD 7.5 Success

This just prevents immediate assertion failures.
This commit is contained in:
Přemysl Eric Janouch 2025-01-08 07:59:50 +01:00
parent cd3d4eb1ad
commit 8b4300c796
Signed by: p
GPG Key ID: A0420B94F92B9493
2 changed files with 3 additions and 1 deletions

@ -1 +1 @@
Subproject commit 75fc6f1c374796f9e794297c3893089009b8772f
Subproject commit 017cb1d5702a32603810545cd74c1da65e35d12d

View File

@ -3785,6 +3785,8 @@ static void
search_on_changed (void)
{
struct mpd_client *c = &g.client;
if (c->state != MPD_CONNECTED)
return;
size_t len;
char *u8 = (char *) u32_to_u8 (g.editor.line, g.editor.len + 1, NULL, &len);