mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-22 17:56:21 +00:00
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.
This commit is contained in:
@@ -295,7 +295,6 @@ get_start(const char* const string, int tokens)
|
||||
GString* result = g_string_new("");
|
||||
int length = g_utf8_strlen(string, -1);
|
||||
gboolean in_quotes = FALSE;
|
||||
char* result_str = NULL;
|
||||
int num_tokens = 0;
|
||||
|
||||
// include first token
|
||||
@@ -325,10 +324,7 @@ get_start(const char* const string, int tokens)
|
||||
}
|
||||
}
|
||||
|
||||
result_str = result->str;
|
||||
g_string_free(result, FALSE);
|
||||
|
||||
return result_str;
|
||||
return g_string_free(result, FALSE);
|
||||
}
|
||||
|
||||
GHashTable*
|
||||
|
||||
Reference in New Issue
Block a user