From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24583 invoked by alias); 15 Oct 2013 19:39:36 -0000 Mailing-List: contact libffi-discuss-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libffi-discuss-owner@sourceware.org Received: (qmail 24570 invoked by uid 89); 15 Oct 2013 19:39:36 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.7 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_LOW autolearn=ham version=3.3.2 X-HELO: mail-pb0-f44.google.com Received: from mail-pb0-f44.google.com (HELO mail-pb0-f44.google.com) (209.85.160.44) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Tue, 15 Oct 2013 19:39:35 +0000 Received: by mail-pb0-f44.google.com with SMTP id xa7so9233377pbc.17 for ; Tue, 15 Oct 2013 12:39:34 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=MuzyLbu3+pWoDVWg1qgJaVqdCJZ/gplt2Kxj6ibp8Jo=; b=eUFjPW3zMvnnFXHYC/PmgrJ+qJixxu8gqDqmvt1vR/qwdHCg5aQ8LDK1ap/uS13KSR 6noJPyKQIMlqXpvu085yzdKFL08S1u+QcUajEInfpg6GcDSEdxGON0J/lc+6xcUl3qhD fI1wRCX5TXI4vpynD5qlA6kZYt1a9zkC/y7vwp7nMHTZfI6mxCWlN7pCfwP8yquoi294 vjW4b1S5o8bhPFU8DWF/qcHV11HxxsHaYumORtXL/5GECU4Sv6bq0IhJSOcvAaGz7llB m+v1EvRzHjd6AlpYWBC0IL1hdNUxmAFL8324i2vYvc+CHn3QFkST9fVK8LJ3edE6KyUI 1GsA== X-Gm-Message-State: ALoCoQkYtmWDSa/sGYL/D24ovsrXdTNRtJZgh9gp9+7cYGUxB+YSUWhwg/N3e6eAh5w4/ttHntvm MIME-Version: 1.0 X-Received: by 10.66.190.10 with SMTP id gm10mr10456441pac.126.1381865973964; Tue, 15 Oct 2013 12:39:33 -0700 (PDT) Received: by 10.70.96.228 with HTTP; Tue, 15 Oct 2013 12:39:33 -0700 (PDT) In-Reply-To: <5257570B.4050600@codesourcery.com> References: <5257570B.4050600@codesourcery.com> Date: Tue, 15 Oct 2013 19:39:00 -0000 Message-ID: Subject: Re: [PATCH] fix uninitialized variable in testsuite From: Anthony Green To: Sandra Loosemore Cc: "libffi-discuss@sourceware.org" Content-Type: text/plain; charset=ISO-8859-1 X-IsSubscribed: yes X-SW-Source: 2013/txt/msg00184.txt.bz2 Good catch, Sandra. I've committed this and the nios2 port. Out of curiosity, how did you test the nios2 port? Thanks! AG On Thu, Oct 10, 2013 at 9:40 PM, Sandra Loosemore wrote: > I found that the test cls_many_mixed_args.c was failing due to an > uninitialized variable. This patch fixes it. OK? > > -Sandra