From e59c401c840f379e64945734969db03b0e55ef22 Mon Sep 17 00:00:00 2001 From: Michael Vetter Date: Fri, 17 Mar 2023 23:58:33 +0100 Subject: Adapt to g_string_free glib 2.75.3 change glib 2.75.3 changes warning behaviour of `g_string_free()`. See: * https://gitlab.gnome.org/GNOME/glib/-/merge_requests/3219 * https://gitlab.gnome.org/GNOME/glib/-/merge_requests/3226 Use this opportunity to replace the use of GString with `g_strdup_printf()` where possible. Otherwise correctly take the return value of `g_string_free()` which is nicer anyways. --- src/command/cmd_defs.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src/command/cmd_defs.c') diff --git a/src/command/cmd_defs.c b/src/command/cmd_defs.c index 778d96ba..c9faed96 100644 --- a/src/command/cmd_defs.c +++ b/src/command/cmd_defs.c @@ -2738,10 +2738,7 @@ _cmd_index(const Command* cmd) } g_strfreev(tokens); - char* res = index->str; - g_string_free(index, FALSE); - - return res; + return g_string_free(index, FALSE); } GList* -- cgit 1.4.1-2-gfad0