From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/14115 Path: news.gmane.org!.POSTED.blaine.gmane.org!not-for-mail From: Fangrui Song Newsgroups: gmane.linux.lib.musl.general Subject: [PATCH] remove unused variables from dynlink.c Date: Sun, 12 May 2019 09:50:50 +0800 Message-ID: <20190512015050.wjm37cco537skyf5@gmail.com> Reply-To: musl@lists.openwall.com Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Injection-Info: blaine.gmane.org; posting-host="blaine.gmane.org:195.159.176.226"; logging-data="19539"; mail-complaints-to="usenet@blaine.gmane.org" User-Agent: NeoMutt/20180223-112-0c5bf3 To: musl@lists.openwall.com Original-X-From: musl-return-14131-gllmg-musl=m.gmane.org@lists.openwall.com Sun May 12 03:51:10 2019 Return-path: Envelope-to: gllmg-musl@m.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by blaine.gmane.org with smtp (Exim 4.89) (envelope-from ) id 1hPdds-0004xT-EF for gllmg-musl@m.gmane.org; Sun, 12 May 2019 03:51:08 +0200 Original-Received: (qmail 24225 invoked by uid 550); 12 May 2019 01:51:05 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Original-Received: (qmail 24194 invoked from network); 12 May 2019 01:51:05 -0000 X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:subject:message-id:mime-version :content-disposition:user-agent; bh=CzLi4jMZEQiZqwZ5okm36/rtux53Ag+ma4GC9CIHOAA=; b=tB5rOMRDWn0V5JnRAw7zTQn7RBrqM6s04L01/Y4/ZUaFV22q1JRekZ/2J7AxgFXK0Q QdvmQ+t4n0TwEEnY2vYuHtj5PYPDpYLKcshHhFHF5qo4wfXmisAOieQd0YKt/jwgUv7y tZ2Qlx1d/ZELmoBHWNOxTuWdo7WQK/4vYAafEXdTySCqcdxG5PLC3+fbP6BniEayF/jL TZ74nn/pK27mWVNXF0lMsQp/7hkkx9QSmsIrZvDNu6KGoSvtpOWWbpEc4rsf5hjzpxTe OZq+02l+XyWsIGDfx0GO+wfFC8O9UVqo2ywpoeGADBxCVJuJyhPmb0HuDVpo82ShAZrn AQlw== X-Gm-Message-State: APjAAAWPbubkl3X6iyxgadJGd5jn9WhqFjOjeyKEc+DN/1ONadi5YC3Z rerUJco/VxQ6thNh6M9EaWf3baLZVk4= X-Google-Smtp-Source: APXvYqzloB45MgFcGhXunQh0qv+cudKbivF/yLrR3CZwiCK10FOEXrXj9upIrNnpHHBP98rXT/1lDw== X-Received: by 2002:a65:4489:: with SMTP id l9mr23090531pgq.1.1557625853117; Sat, 11 May 2019 18:50:53 -0700 (PDT) Content-Disposition: inline Xref: news.gmane.org gmane.linux.lib.musl.general:14115 Archived-At: --- ldso/dynlink.c | 1 - 1 file changed, 1 deletion(-) diff --git a/ldso/dynlink.c b/ldso/dynlink.c index 42a5470d..ad0cdba2 100644 --- a/ldso/dynlink.c +++ b/ldso/dynlink.c @@ -86,7 +86,6 @@ struct dso { size_t relro_start, relro_end; uintptr_t *new_dtv; unsigned char *new_tls; - volatile int new_dtv_idx, new_tls_idx; struct td_index *td_index; struct dso *fini_next; char *shortname; -- 2.21.0