Re: Bug#683505: notmuch: FTBFS if built twice in a row: unrepresentable changes to...
[notmuch-archives.git] / fb / 34116e9fa1410436b2b46347ab8630185fbd24
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 BA38E431FBD\r
6         for <notmuch@notmuchmail.org>; Fri, 13 Apr 2012 18:42:00 -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 OxXs9kGvkL8I for <notmuch@notmuchmail.org>;\r
17         Fri, 13 Apr 2012 18:42:00 -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 19589431FB6\r
22         for <notmuch@notmuchmail.org>; Fri, 13 Apr 2012 18:42:00 -0700 (PDT)\r
23 Received: by mail-pz0-f45.google.com with SMTP id x6so4543752dac.18\r
24         for <notmuch@notmuchmail.org>; Fri, 13 Apr 2012 18:41:59 -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=FzpfA47ugLXgjj2IPsPlkmMfM9hUkvrkRXTLQRW0ypEjfhR9BC6gQtgJNLs9HJdGi7\r
29         +/2OAbTrQwsM6Gn1bVtEtaF3oaBhHiW0hQNHTwS9YL4sIcC6LrlTlKrGJ0di3en9VQOl\r
30         8TWFF6VBeMILAlnR7Qh9w6RBRMU5AhpyXvEvIwKonkqa8DAr25iaKmTylicQ0jVMcHfY\r
31         l9W7o6TWxsTGaq4X+SnAoR2aH/01qJq8TYrhEBdmiac/kATymxHKMaMrOj23yi1GRCtd\r
32         Y3jIMz8deaCJ+u19Nxu/0y9RNXbQc4CqywJ4cJvXHOZe3F4U2h9wqmjbOhQ3bxSYlTO9\r
33         M4oQ==\r
34 Received: by 10.68.202.167 with SMTP id kj7mr9222501pbc.9.1334367719823;\r
35         Fri, 13 Apr 2012 18:41:59 -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 h10sm10245042pbh.69.2012.04.13.18.41.54\r
39         (version=TLSv1/SSLv3 cipher=OTHER);\r
40         Fri, 13 Apr 2012 18:41:58 -0700 (PDT)\r
41 From: Peter Wang <novalazy@gmail.com>\r
42 To: notmuch@notmuchmail.org\r
43 Subject: [PATCH v4 1/6] config: Fix free in 'config get' implementation.\r
44 Date: Sat, 14 Apr 2012 11:41:01 +1000\r
45 Message-Id: <1334367666-10954-2-git-send-email-novalazy@gmail.com>\r
46 X-Mailer: git-send-email 1.7.4.4\r
47 In-Reply-To: <1334367666-10954-1-git-send-email-novalazy@gmail.com>\r
48 References: <1332282698-7951-1-git-send-email-novalazy@gmail.com>\r
49         <1334367666-10954-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: Sat, 14 Apr 2012 01:42:00 -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