Return-Path: Delivered-To: apmail-incubator-stdcxx-dev-archive@www.apache.org Received: (qmail 76139 invoked from network); 11 Nov 2005 17:24:27 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 11 Nov 2005 17:24:27 -0000 Received: (qmail 28988 invoked by uid 500); 11 Nov 2005 17:24:27 -0000 Delivered-To: apmail-incubator-stdcxx-dev-archive@incubator.apache.org Received: (qmail 28971 invoked by uid 500); 11 Nov 2005 17:24:26 -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 28960 invoked by uid 99); 11 Nov 2005 17:24:26 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [192.87.106.226] (HELO ajax.apache.org) (192.87.106.226) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Nov 2005 09:24:24 -0800 Received: from ajax.apache.org (ajax.apache.org [127.0.0.1]) by ajax.apache.org (Postfix) with ESMTP id 388E5E1 for ; Fri, 11 Nov 2005 18:24:03 +0100 (CET) Message-ID: <1539860024.1131729843229.JavaMail.jira@ajax.apache.org> Date: Fri, 11 Nov 2005 18:24:03 +0100 (CET) From: "Jeremy Dean (JIRA)" To: stdcxx-dev@incubator.apache.org Subject: [jira] Created: (STDCXX-66) Errors accessing large files Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Errors accessing large files ----------------------------- Key: STDCXX-66 URL: http://issues.apache.org/jira/browse/STDCXX-66 Project: STDCXX Type: New Feature Versions: 4.1.2 Environment: AIX 5.2 VisualAge C++ Professional / C for AIX Compiler, Version 6 Reporter: Jeremy Dean Priority: Minor #include #include int main(int argc, char**argv) { std::ifstream i; try { i.open("/tmp/largeFile.txt",std::ios::in); if ( i.good() ) { char s[1024]; i >> s ; // .getline(s, 100); std::cout << s << std::endl; } else { std::cout << "Open error\n"; } } catch(...) { std::cout << "error\n"; } return 0; } -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira