Return-Path: Delivered-To: apmail-incubator-stdcxx-dev-archive@www.apache.org Received: (qmail 23396 invoked from network); 17 Aug 2007 01:07:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 17 Aug 2007 01:07:37 -0000 Received: (qmail 21577 invoked by uid 500); 17 Aug 2007 01:07:35 -0000 Delivered-To: apmail-incubator-stdcxx-dev-archive@incubator.apache.org Received: (qmail 21560 invoked by uid 500); 17 Aug 2007 01:07:35 -0000 Mailing-List: contact stdcxx-dev-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-dev@incubator.apache.org Received: (qmail 21544 invoked by uid 99); 17 Aug 2007 01:07:35 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Aug 2007 18:07:35 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of everton.basso@gmail.com designates 209.85.146.178 as permitted sender) Received: from [209.85.146.178] (HELO wa-out-1112.google.com) (209.85.146.178) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 17 Aug 2007 01:07:32 +0000 Received: by wa-out-1112.google.com with SMTP id j5so56848wah for ; Thu, 16 Aug 2007 18:07:12 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type; b=bTXWqZ3QYKRyRPZxpZ5Vyzc2OhHpw9xc8MDvvxYmMhAyLxSMD+JhC6cxBTc4n6oXzCEVacK1xCRGP7wi3meCgzLKSBh9fEYzGL09c3vuDZ7uzFv5d26yF9+pnEkYs8RchRwjn/DVmjevL+f6AG1Xs7aPAUqysYRX5gaZlFoJiLM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type; b=Ac0IV/dDWQSyj/C8fGyWz33cxCkjjtB/VxIwSAk53wKEpgelQq80b0E0+ADhLHo5y/JVAGNB+aeEonXIuagEif6L6AbRzZZQqJM4/g+Z7erK9DML05taFH4G+QpjZbo8VV1FgvkJcut2nXh8YGyhdlmSLaHipcGg1NgyBEHqilk= Received: by 10.115.88.1 with SMTP id q1mr2582467wal.1187312832110; Thu, 16 Aug 2007 18:07:12 -0700 (PDT) Received: by 10.114.112.8 with HTTP; Thu, 16 Aug 2007 18:07:12 -0700 (PDT) Message-ID: Date: Thu, 16 Aug 2007 22:07:12 -0300 From: "Everton Araujo" To: stdcxx-dev@incubator.apache.org Subject: STDCXX-522 MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_73271_21146876.1187312832084" X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_73271_21146876.1187312832084 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi, First of all, hello everybody. I'm trying to getting involved in stdcxx project, I'm from Brazil so my english might be not that good, sorry. I started by trying to fix issue STDCXX-522. As far as I could debug, bug seems to be in basic_filebuf::overflow where, according to the docs, should just exit with success when c is an eof(). So, to fix it I've inserted the following statement at line 333 of fstream.cc: if(this->_C_is_eof(__c)) return traits_type::not_eof (__c); Hope it helps. Everton. ------=_Part_73271_21146876.1187312832084--