From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5EB42138330 for ; Fri, 30 Sep 2016 22:10:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8C36EE09A9; Fri, 30 Sep 2016 22:10:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 72022E09A9 for ; Fri, 30 Sep 2016 22:10:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0C453340AB6 for ; Fri, 30 Sep 2016 22:10:14 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 417FC248D for ; Fri, 30 Sep 2016 22:10:12 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1475270996.6710316a18c33601e780282e72c60f09b5175280.williamh@OpenRC> Subject: [gentoo-commits] proj/openrc:master commit in: src/rc/ X-VCS-Repository: proj/openrc X-VCS-Files: src/rc/openrc-run.c X-VCS-Directories: src/rc/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: 6710316a18c33601e780282e72c60f09b5175280 X-VCS-Branch: master Date: Fri, 30 Sep 2016 22:10:12 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 9ba64372-5b20-445e-b002-a92fe4b32a8f X-Archives-Hash: f3d614796cbfd38c1f428bd2211784aa commit: 6710316a18c33601e780282e72c60f09b5175280 Author: Doug Freed mtu edu> AuthorDate: Fri Sep 30 21:29:56 2016 +0000 Commit: William Hubbs gentoo org> CommitDate: Fri Sep 30 21:29:56 2016 +0000 URL: https://gitweb.gentoo.org/proj/openrc.git/commit/?id=6710316a openrc-run: fix double free src/rc/openrc-run.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/rc/openrc-run.c b/src/rc/openrc-run.c index e3b4fbb..bb79f42 100644 --- a/src/rc/openrc-run.c +++ b/src/rc/openrc-run.c @@ -1344,6 +1344,7 @@ int main(int argc, char **argv) applet_list, runlevel, depoptions); rc_stringlist_free(tmplist); + tmplist = NULL; TAILQ_FOREACH(svc, services, entries) printf("%s ", svc->value); printf ("\n");