diff options
| author | Dirk-Jan C. Binnema <djcb@djcbsoftware.nl> | 2021-10-20 23:06:28 +0300 |
|---|---|---|
| committer | Dirk-Jan C. Binnema <djcb@djcbsoftware.nl> | 2021-10-23 11:25:37 +0300 |
| commit | 8bb5b0352f7b992587a18931bd208c13f7eb7728 (patch) | |
| tree | b6b16b45cc690db2a15e45eb076b21a9e4ef8e88 /lib/mu-msg-file.cc | |
| parent | a4dd58ebdb7c56022c16ddf172c603d948af780f (diff) | |
lib/mu: fix a few leaks
Thanks to valgrind
Diffstat (limited to 'lib/mu-msg-file.cc')
| -rw-r--r-- | lib/mu-msg-file.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/mu-msg-file.cc b/lib/mu-msg-file.cc index efa0bba..2bc57a9 100644 --- a/lib/mu-msg-file.cc +++ b/lib/mu-msg-file.cc @@ -1,5 +1,5 @@ /* -** Copyright (C) 2012-2020 Dirk-Jan C. Binnema <djcb@djcbsoftware.nl> +** Copyright (C) 2012-2021 Dirk-Jan C. Binnema <djcb@djcbsoftware.nl> ** ** This program is free software; you can redistribute it and/or modify it ** under the terms of the GNU General Public License as published by the @@ -73,6 +73,7 @@ Mu::mu_msg_file_destroy (MuMsgFile *self) g_free(self->_path); g_free(self->_maildir); + g_free(self->_sha1); g_free (self); } |
