From stdcxx-commits-return-1081-apmail-incubator-stdcxx-commits-archive=incubator.apache.org@incubator.apache.org Tue Jan 09 16:55:47 2007 Return-Path: Delivered-To: apmail-incubator-stdcxx-commits-archive@www.apache.org Received: (qmail 30849 invoked from network); 9 Jan 2007 16:55:47 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 9 Jan 2007 16:55:47 -0000 Received: (qmail 28820 invoked by uid 500); 9 Jan 2007 16:55:53 -0000 Delivered-To: apmail-incubator-stdcxx-commits-archive@incubator.apache.org Received: (qmail 28805 invoked by uid 500); 9 Jan 2007 16:55:53 -0000 Mailing-List: contact stdcxx-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: stdcxx-dev@incubator.apache.org Delivered-To: mailing list stdcxx-commits@incubator.apache.org Received: (qmail 28788 invoked by uid 99); 9 Jan 2007 16:55:53 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Jan 2007 08:55:53 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 09 Jan 2007 08:55:46 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id 65ECF1A981A; Tue, 9 Jan 2007 08:54:46 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r494482 - /incubator/stdcxx/trunk/util/runall.cpp Date: Tue, 09 Jan 2007 16:54:44 -0000 To: stdcxx-commits@incubator.apache.org From: faridz@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070109165446.65ECF1A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: faridz Date: Tue Jan 9 08:54:40 2007 New Revision: 494482 URL: http://svn.apache.org/viewvc?view=rev&rev=494482 Log: 2007-01-09 Farid Zaripov * runall.cpp (check_target_ok): Corrected index in array item assigning Modified: incubator/stdcxx/trunk/util/runall.cpp Modified: incubator/stdcxx/trunk/util/runall.cpp URL: http://svn.apache.org/viewvc/incubator/stdcxx/trunk/util/runall.cpp?view=diff&rev=494482&r1=494481&r2=494482 ============================================================================== --- incubator/stdcxx/trunk/util/runall.cpp (original) +++ incubator/stdcxx/trunk/util/runall.cpp Tue Jan 9 08:54:40 2007 @@ -312,7 +312,7 @@ tmp_name [tmp_len - 4] = 'o'; tmp_name [tmp_len - 3] = 'b'; tmp_name [tmp_len - 2] = 'j'; - tmp_name [tmp_len - 2] = '\0'; + tmp_name [tmp_len - 1] = '\0'; } #endif /* _WIN32 */