Re: notmuch-search-toggle-order and notmuch-tree
[notmuch-archives.git] / fb / 5b9e6c7be50530a73d8d941070de3ef6247260
1 Return-Path: <novalazy@gmail.com>\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 1389E431FC3\r
6         for <notmuch@notmuchmail.org>; Thu,  5 Apr 2012 18:48:45 -0700 (PDT)\r
7 X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
8 X-Spam-Flag: NO\r
9 X-Spam-Score: -0.799\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=-0.799 tagged_above=-999 required=5\r
12         tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1,\r
13         FREEMAIL_FROM=0.001, RCVD_IN_DNSWL_LOW=-0.7] autolearn=disabled\r
14 Received: from olra.theworths.org ([127.0.0.1])\r
15         by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
16         with ESMTP id 0NxMaaOGcGSX for <notmuch@notmuchmail.org>;\r
17         Thu,  5 Apr 2012 18:48:44 -0700 (PDT)\r
18 Received: from mail-pz0-f45.google.com (mail-pz0-f45.google.com\r
19         [209.85.210.45]) (using TLSv1 with cipher RC4-SHA (128/128 bits))\r
20         (No client certificate requested)\r
21         by olra.theworths.org (Postfix) with ESMTPS id B43CC431FC9\r
22         for <notmuch@notmuchmail.org>; Thu,  5 Apr 2012 18:48:42 -0700 (PDT)\r
23 Received: by dacx6 with SMTP id x6so2370746dac.18\r
24         for <notmuch@notmuchmail.org>; Thu, 05 Apr 2012 18:48:42 -0700 (PDT)\r
25 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113;\r
26         h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references;\r
27         bh=mkSjrE63V0UO6LxveJEQlNNV/Rp+LMoxf9IM3FkxXPs=;\r
28         b=S1qiyNSM4wl7HzYsEu7cqTEcbBW8SD9NNdQ/p2oQP5QDPdc/MMkXnBR5YKJ3SNlbda\r
29         BUcuPa5kdzAG8Qzo80r/7UjYvi5nQFtLBN89YtLhu3c4ZwISg6rSQ5mYa+PJGqdTd5A7\r
30         utnSE1gwSrbZ2UfQGZSJsMk6AEQ/l3ClvFF3Kz/SU2B0auVm+Ky0ZDYFyfRN5qBCwMO6\r
31         zp1fWkTTmb1+72JLvtwBAbnnDYcf9z3CYXzhx3SEOfhk7NH+Jc4bMUG/ZCrgj0FTGN4v\r
32         6QdgWkZcwrF0DNV59qK6a+8gB8xFsSh4RdlfDVncmwthpdhCrVgmQmRKulxsOKR6wbhL\r
33         s5nA==\r
34 Received: by 10.68.193.161 with SMTP id hp1mr11191271pbc.106.1333676921940;\r
35         Thu, 05 Apr 2012 18:48:41 -0700 (PDT)\r
36 Received: from localhost (215.42.233.220.static.exetel.com.au.\r
37         [220.233.42.215])\r
38         by mx.google.com with ESMTPS id h10sm4776832pbh.69.2012.04.05.18.48.39\r
39         (version=TLSv1/SSLv3 cipher=OTHER);\r
40         Thu, 05 Apr 2012 18:48:40 -0700 (PDT)\r
41 From: Peter Wang <novalazy@gmail.com>\r
42 To: notmuch@notmuchmail.org\r
43 Subject: [PATCH v3 1/5] config: Fix free in 'config get' implementation.\r
44 Date: Fri,  6 Apr 2012 11:48:02 +1000\r
45 Message-Id: <1333676886-9835-2-git-send-email-novalazy@gmail.com>\r
46 X-Mailer: git-send-email 1.7.4.4\r
47 In-Reply-To: <1333676886-9835-1-git-send-email-novalazy@gmail.com>\r
48 References: <1332282698-7951-1-git-send-email-novalazy@gmail.com>\r
49         <1333676886-9835-1-git-send-email-novalazy@gmail.com>\r
50 X-BeenThere: notmuch@notmuchmail.org\r
51 X-Mailman-Version: 2.1.13\r
52 Precedence: list\r
53 List-Id: "Use and development of the notmuch mail system."\r
54         <notmuch.notmuchmail.org>\r
55 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
56         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
57 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
58 List-Post: <mailto:notmuch@notmuchmail.org>\r
59 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
60 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
61         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
62 X-List-Received-Date: Fri, 06 Apr 2012 01:48:45 -0000\r
63 \r
64 The array returned by g_key_file_get_string_list() should be freed with\r
65 g_strfreev(), not free().\r
66 ---\r
67  notmuch-config.c |    2 +-\r
68  1 files changed, 1 insertions(+), 1 deletions(-)\r
69 \r
70 diff --git a/notmuch-config.c b/notmuch-config.c\r
71 index e9b2750..85fc774 100644\r
72 --- a/notmuch-config.c\r
73 +++ b/notmuch-config.c\r
74 @@ -751,7 +751,7 @@ notmuch_config_command_get (void *ctx, char *item)\r
75         for (i = 0; i < length; i++)\r
76             printf ("%s\n", value[i]);\r
77  \r
78 -       free (value);\r
79 +       g_strfreev (value);\r
80      }\r
81  \r
82      notmuch_config_close (config);\r
83 -- \r
84 1.7.4.4\r
85 \r