From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-1.1 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,MAILING_LIST_MULTI,NICE_REPLY_A,RCVD_IN_MSPIKE_H2 autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 10178 invoked from network); 24 Oct 2022 07:59:26 -0000 Received: from second.openwall.net (193.110.157.125) by inbox.vuxu.org with ESMTPUTF8; 24 Oct 2022 07:59:26 -0000 Received: (qmail 24282 invoked by uid 550); 24 Oct 2022 07:59:23 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Reply-To: musl@lists.openwall.com Received: (qmail 24250 invoked from network); 24 Oct 2022 07:59:22 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=zhasha.com; s=wirbelwind; t=1666598349; bh=Ohv3ewoEH4bNQBZhyOyw6QS++Dq6sl/wa6/fMibU1Ng=; h=Date:From:To:Subject:In-Reply-To:References; b=mCmvT8rVSsZjN9Mu8zdAsYBZ8GGP3l/RLjef18sSNpmGR5Z2BMc29ZWp4EMaXLKyi hTS4wyOU23Byn45hMPrZy8ed+japCR0C4H1BF33plS/NlYVedrHGJ9MzzDiOmUcBWp WXzkcyLZw/pEjhVn8sx3pBd0FMZUfrfMM9JW8Cjc= Date: Mon, 24 Oct 2022 09:59:08 +0200 From: Joakim Sindholt To: musl@lists.openwall.com Message-Id: <20221024095908.c444db4766b00a46a62dd434@zhasha.com> In-Reply-To: References: <20221022135723.31813-1-ismael@iodev.co.uk> <20221023054622.GP29905@brightrain.aerifal.cx> <20221023141046.GM2158779@port70.net> <20221023151342.GQ29905@brightrain.aerifal.cx> <20221023170300.GS29905@brightrain.aerifal.cx> X-Mailer: Sylpheed 3.7.0 (GTK+ 2.24.33; x86_64-redhat-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: [musl] [PATCH] remove strdupa On Mon, 24 Oct 2022 10:58:22 +0300, "Konstantin P." wrote: > systemd is using strdupa widely, and it is main reason why it should > considered to stay. At git HEAD it only uses strdupa 5 times, all of them in src/test/test-string-util.c. The rest are their own str[n]dupa_safe macro that uses alloca directly.