Reply all - issue
[notmuch-archives.git] / 0d / b2df42fccbca500f7dc60bed6d40cbd27bb7e3
1 Return-Path: <djcb@djcbsoftware.nl>\r
2 X-Original-To: notmuch@notmuchmail.org\r
3 Delivered-To: notmuch@notmuchmail.org\r
4 Received: from localhost (localhost [127.0.0.1])\r
5         by olra.theworths.org (Postfix) with ESMTP id 5964E431FBD\r
6         for <notmuch@notmuchmail.org>; Tue,  1 Dec 2009 23:11:37 -0800 (PST)\r
7 X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
8 Received: from olra.theworths.org ([127.0.0.1])\r
9         by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
10         with ESMTP id 1-0oKrhjyjNG for <notmuch@notmuchmail.org>;\r
11         Tue,  1 Dec 2009 23:11:36 -0800 (PST)\r
12 Received: from gw01.mail.saunalahti.fi (gw01.mail.saunalahti.fi\r
13         [195.197.172.115])\r
14         by olra.theworths.org (Postfix) with ESMTP id 33FCA431FC2\r
15         for <notmuch@notmuchmail.org>; Tue,  1 Dec 2009 23:11:34 -0800 (PST)\r
16 Received: from djcbsoftware.nl (a88-112-254-208.elisa-laajakaista.fi\r
17         [88.112.254.208])\r
18         (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))\r
19         (No client certificate requested)\r
20         by gw01.mail.saunalahti.fi (Postfix) with ESMTP id 5391C151653;\r
21         Wed,  2 Dec 2009 09:11:31 +0200 (EET)\r
22 Received: by djcbsoftware.nl (Postfix, from userid 1000)\r
23         id 13CDD39C549; Wed,  2 Dec 2009 09:11:25 +0200 (EET)\r
24 From: "Dirk-Jan C. Binnema" <djcb.bulk@gmail.com>\r
25 To: notmuch@notmuchmail.org\r
26 Date: Wed,  2 Dec 2009 09:11:24 +0200\r
27 Message-Id: <1259737885-15103-1-git-send-email-djcb.bulk@gmail.com>\r
28 X-Mailer: git-send-email 1.6.3.3\r
29 Subject: [notmuch] [PATCH 1/2] * notmuch-config: fix small leak from\r
30         'g_key_file_to_data'\r
31 X-BeenThere: notmuch@notmuchmail.org\r
32 X-Mailman-Version: 2.1.12\r
33 Precedence: list\r
34 List-Id: "Use and development of the notmuch mail system."\r
35         <notmuch.notmuchmail.org>\r
36 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
37         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
38 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
39 List-Post: <mailto:notmuch@notmuchmail.org>\r
40 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
41 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
42         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
43 X-List-Received-Date: Wed, 02 Dec 2009 07:11:37 -0000\r
44 \r
45 \r
46 Signed-off-by: Dirk-Jan C. Binnema <djcb.bulk@gmail.com>\r
47 ---\r
48  notmuch-config.c |    2 ++\r
49  1 files changed, 2 insertions(+), 0 deletions(-)\r
50 \r
51 diff --git a/notmuch-config.c b/notmuch-config.c\r
52 index fc65d6b..95430db 100644\r
53 --- a/notmuch-config.c\r
54 +++ b/notmuch-config.c\r
55 @@ -317,9 +317,11 @@ notmuch_config_save (notmuch_config_t *config)\r
56         fprintf (stderr, "Error saving configuration to %s: %s\n",\r
57                  config->filename, error->message);\r
58         g_error_free (error);\r
59 +       g_free (data);\r
60         return 1;\r
61      }\r
62  \r
63 +    g_free (data);\r
64      return 0;\r
65  }\r
66  \r
67 -- \r
68 1.6.3.3\r
69 \r