Branch: refs/heads/master Author: Colomban Wendling ban@herbesfolles.org Committer: Colomban Wendling ban@herbesfolles.org Date: Thu, 02 May 2024 21:52:06 UTC Commit: 71a15b9ff30308fff3831fb917b5e3927b5de083 https://github.com/geany/geany-plugins/commit/71a15b9ff30308fff3831fb917b5e3...
Log Message: ----------- geniuspaste: Fix memory leak detected by cppcheck
Modified Paths: -------------- geniuspaste/src/geniuspaste.c
Modified: geniuspaste/src/geniuspaste.c 2 lines changed, 2 insertions(+), 0 deletions(-) =================================================================== @@ -750,6 +750,8 @@ static void show_msgbox(GtkMessageType type, GtkButtonsType buttons, /* run the dialog */ gtk_dialog_run(GTK_DIALOG(dlg)); gtk_widget_destroy(dlg); + + g_free(markup); }
static void debug_log_message_body(SoupMessage *msg,
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).