From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26974 invoked from network); 30 Dec 2008 00:20:08 -0000 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on f.primenet.com.au X-Spam-Level: X-Spam-Status: No, score=-2.6 required=5.0 tests=BAYES_00 autolearn=ham version=3.2.5 Received: from news.dotsrc.org (HELO a.mx.sunsite.dk) (130.225.247.88) by ns1.primenet.com.au with SMTP; 30 Dec 2008 00:20:08 -0000 Received-SPF: none (ns1.primenet.com.au: domain at sunsite.dk does not designate permitted sender hosts) Received: (qmail 42126 invoked from network); 30 Dec 2008 00:20:01 -0000 Received: from sunsite.dk (130.225.247.90) by a.mx.sunsite.dk with SMTP; 30 Dec 2008 00:20:01 -0000 Received: (qmail 629 invoked by alias); 30 Dec 2008 00:19:55 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 26199 Received: (qmail 613 invoked from network); 30 Dec 2008 00:19:55 -0000 Received: from bifrost.dotsrc.org (130.225.254.106) by sunsite.dk with SMTP; 30 Dec 2008 00:19:55 -0000 Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.153]) by bifrost.dotsrc.org (Postfix) with ESMTP id AEE8780308BE for ; Tue, 30 Dec 2008 01:19:52 +0100 (CET) Received: by fg-out-1718.google.com with SMTP id e21so1713818fga.37 for ; Mon, 29 Dec 2008 16:19:52 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:mime-version:content-type:content-transfer-encoding :content-disposition; bh=cxNCZjdDqwFRv8emgb0JVCcn7+vAcM7QunUiIz7EL7c=; b=QtghGncvz96aFF0p0/gW3R4Jp6wBxMAlwXz/5YtVh+63OgtxtGxx4q9Ovoz95D6x05 +BC0crhSbAsizXFCKTToNwh/EHdTgZkRqg9+gG4KfVKFvvcYq0cOwldmpInqPAP+iCrt 6Oa/GZvMuc5zocLGKCl4Avk6clBewJ6O0hdaA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:mime-version:content-type :content-transfer-encoding:content-disposition; b=Bqv24uEpjdvGFPWLNuAWCa0WkU21p3OiL6qLtVto9H+1at6jYFL8W7rT5rOlwJNnqh wgaPyJdpka6WOs6a3XUa3RGzDsMrOUZXxy5WF+Ciy3o8PByT9a0EYALr4qwtGeTlQ69i bpOqnwOv9RAjkCaDX71TTi/CpWoIayd8o3JDs= Received: by 10.86.100.19 with SMTP id x19mr8400592fgb.29.1230596392030; Mon, 29 Dec 2008 16:19:52 -0800 (PST) Received: by 10.86.62.8 with HTTP; Mon, 29 Dec 2008 16:19:51 -0800 (PST) Message-ID: <2d460de70812291619y5b32aadcu733cf06c9d197e1f@mail.gmail.com> Date: Tue, 30 Dec 2008 01:19:51 +0100 From: "Richard Hartmann" To: "Zsh Workers" Subject: Segfault on really long paths Cc: "Goswin Brederlow" , 418199@bugs.debian.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Scanned: ClamAV 0.92.1/8811/Mon Dec 29 21:02:38 2008 on bifrost X-Virus-Status: Clean Hi all, richih@adamantium ~ % for i in {1..1000}; do mkdir 0123456789; cd 0123456789; done [1] 24398 segmentation fault zsh richih@adamantium ~ % It would be better to throw an error than to segfault. Richard