Branch: refs/heads/master Author: Colomban Wendling ban@herbesfolles.org Committer: Colomban Wendling ban@herbesfolles.org Date: Sun, 16 Jun 2024 09:27:19 UTC Commit: 1699a70e34e918699b9bce288c768d03f2112f28 https://github.com/geany/geany-plugins/commit/1699a70e34e918699b9bce288c768d...
Log Message: ----------- geniuspaste: Silence a harmless warning with GLib 2.76+
Modified Paths: -------------- geniuspaste/src/geniuspaste.c
Modified: geniuspaste/src/geniuspaste.c 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -611,7 +611,7 @@ static SoupMessage *json_request_new(const gchar *method, g_datalist_foreach(fields, append_json_data_item, str); g_string_append_c(str, '}'); bytes = g_bytes_new_take(str->str, str->len); - g_string_free(str, FALSE); + (void) g_string_free(str, FALSE); /* buffer already taken above */ soup_message_set_request_body_from_bytes(msg, "application/json", bytes); g_bytes_unref(bytes);
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).