From patchwork Fri Apr 4 19:03:47 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chris Metcalf X-Patchwork-Id: 412 Return-Path: X-Original-To: siddhesh@wilcox.dreamhost.com Delivered-To: siddhesh@wilcox.dreamhost.com Received: from homiemail-mx22.g.dreamhost.com (mx2.sub5.homie.mail.dreamhost.com [208.113.200.128]) by wilcox.dreamhost.com (Postfix) with ESMTP id F3C9236009A for ; Fri, 4 Apr 2014 13:59:09 -0700 (PDT) Received: by homiemail-mx22.g.dreamhost.com (Postfix, from userid 14307373) id A0F4A45D585B; Fri, 4 Apr 2014 13:59:09 -0700 (PDT) X-Original-To: glibc@patchwork.siddhesh.in Delivered-To: x14307373@homiemail-mx22.g.dreamhost.com Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by homiemail-mx22.g.dreamhost.com (Postfix) with ESMTPS id 691C245D5854 for ; Fri, 4 Apr 2014 13:59:09 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:message-id:from:date:subject:to; q=dns; s= default; b=PHTGrTbMmIjplI6JtURcU21xye7Q8q28AWXEKZttDZCQzunki0q0F PxW2PLsMU0SDg29rKYrT5YqQryF4J/90OeGkdhbbpRLPR1BcllHBe9j+E3UxVknl tn9H5CATN1FK+IcggKWvitprzow3EwfOEZJIZu3tpQ8xXptBgTbXAo= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:message-id:from:date:subject:to; s=default; bh=D9ZE0LfAgnNVm08HPKVESfLthHY=; b=LkJWEbs0IbcK8ZTykawa1+4PkhTO iWhZidwXWhZ7sTuEAFkc4Be10PusCxUqP1w/towWPff0Lej1lD1/Qdck6DgiWkhu MYZD/q3XLfAuBhxpZmLjFmiq5KKWl879I442CF/n6bSwY8dSMPeZLV8pISXmf689 jkkH6KulXKBboXQ= Received: (qmail 29709 invoked by alias); 4 Apr 2014 20:59:07 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 29699 invoked by uid 89); 4 Apr 2014 20:59:06 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.4 required=5.0 tests=AWL, BAYES_00, NO_DNS_FOR_FROM, RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: gx-1.internal.tilera.com Message-Id: <201404042059.s34Kx2tI015949@gx-1.internal.tilera.com> From: Chris Metcalf Date: Fri, 4 Apr 2014 15:03:47 -0400 Subject: [COMMITTED PATCH] tile: Fix cut-and-paste bug in commit fcccd5128. To: libc-alpha@sourceware.org X-DH-Original-To: glibc@patchwork.siddhesh.in 2014-04-04 Chris Metcalf * sysdeps/tile/dl-runtime.c (_dl_unmap): Fix cut-and-paste bug in function argument name. diff --git a/sysdeps/tile/dl-runtime.c b/sysdeps/tile/dl-runtime.c index 8bc2911..bcc00bc 100644 --- a/sysdeps/tile/dl-runtime.c +++ b/sysdeps/tile/dl-runtime.c @@ -152,8 +152,8 @@ sim_dlclose (ElfW(Addr) map_start) } void internal_function -_dl_unmap (struct link_map *l) +_dl_unmap (struct link_map *map) { - sim_dlclose (l->l_map_start); + sim_dlclose (map->l_map_start); _dl_unmap_segments (map); }