diff options
author | rbuj <[email protected]> | 2021-10-21 22:02:14 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2022-07-10 21:27:43 +0200 |
commit | 6e1f199608ad5622507816f00ac22a0a8990ed4c (patch) | |
tree | 769dd86351dd21ea4ca9a8f03e92f3c299f3fa60 | |
parent | cb4703ed7214fd5366ee1837c63fd2bcdf21319c (diff) | |
download | mate-utils-6e1f199608ad5622507816f00ac22a0a8990ed4c.tar.bz2 mate-utils-6e1f199608ad5622507816f00ac22a0a8990ed4c.tar.xz |
mate-dictionary: fix memory leak
-rw-r--r-- | mate-dictionary/src/gdict-app.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mate-dictionary/src/gdict-app.c b/mate-dictionary/src/gdict-app.c index 03f9cd6a..3d82a037 100644 --- a/mate-dictionary/src/gdict-app.c +++ b/mate-dictionary/src/gdict-app.c @@ -359,6 +359,7 @@ gdict_init (int *argc, char ***argv) exit (1); } + g_option_context_free (context); g_set_application_name (_("Dictionary")); gtk_window_set_default_icon_name ("accessories-dictionary"); |