From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 127243 invoked by alias); 25 Jul 2015 16:20:01 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 127185 invoked by uid 89); 25 Jul 2015 16:20:00 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.8 required=5.0 tests=AWL,BAYES_00,KAM_LAZY_DOMAIN_SECURITY,RP_MATCHES_RCVD,SPF_HELO_PASS autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Sat, 25 Jul 2015 16:20:00 +0000 Received: from int-mx13.intmail.prod.int.phx2.redhat.com (int-mx13.intmail.prod.int.phx2.redhat.com [10.5.11.26]) by mx1.redhat.com (Postfix) with ESMTPS id C9A3C3672AE; Sat, 25 Jul 2015 16:19:58 +0000 (UTC) Received: from host1.jankratochvil.net (ovpn-116-41.ams2.redhat.com [10.36.116.41]) by int-mx13.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t6PGJsWn013205 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Sat, 25 Jul 2015 12:19:57 -0400 Date: Sat, 25 Jul 2015 16:20:00 -0000 From: Jan Kratochvil To: Gary Benson Cc: gdb-patches@sourceware.org, =?utf-8?Q?C=C3=A9dric?= Buissart Subject: Re: [PATCH 1/5] Introduce build_debug_file_name Message-ID: <20150725161953.GA30438@host1.jankratochvil.net> References: <1434447768-17328-1-git-send-email-gbenson@redhat.com> <1434447768-17328-2-git-send-email-gbenson@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1434447768-17328-2-git-send-email-gbenson@redhat.com> User-Agent: Mutt/1.5.23 (2014-03-12) X-IsSubscribed: yes X-SW-Source: 2015-07/txt/msg00747.txt.bz2 On Tue, 16 Jun 2015 11:42:44 +0200, Gary Benson wrote: > +/* Build the filename of a separate debug file from an arbitrary > + number of components. Returns an xmalloc'd string that must > + be be freed by the caller. The final argument of this function > + must be NULL to mark the end the argument list. */ I would describe also: Initial slash is left in place. Additionally a slash is appended at the end. Jan