Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:39791 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 84490 invoked from network); 9 Aug 2008 10:18:51 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 9 Aug 2008 10:18:51 -0000 Authentication-Results: pb1.pair.com header.from=hannes.magnusson@gmail.com; sender-id=pass; domainkeys=bad Authentication-Results: pb1.pair.com smtp.mail=hannes.magnusson@gmail.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.128.185 as permitted sender) DomainKey-Status: bad X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 X-PHP-List-Original-Sender: hannes.magnusson@gmail.com X-Host-Fingerprint: 209.85.128.185 fk-out-0910.google.com Received: from [209.85.128.185] ([209.85.128.185:42026] helo=fk-out-0910.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 97/7A-02575-80F6D984 for ; Sat, 09 Aug 2008 06:18:50 -0400 Received: by fk-out-0910.google.com with SMTP id 18so1085134fks.7 for ; Sat, 09 Aug 2008 03:18:46 -0700 (PDT) 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:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=lHllug2tjW8T+2/0Em93NRJgAOZXdLnV/5ifppiJObI=; b=RFyEU0qVo3Qj0rw4vxC7jwxL8HKzNowlqtaxNFsCjr7rWBcB0xBmbdyyzldItKZWmq +X7oIwrHQMJygVNMlHDa6UjL7BrLwF6Y/7kIe15brBKSrkXczCZG56hiFJ08WZ92fLuR wY9iHfLGfLF5Rw+d0rA5jNhRoZNIk3ycPL3JQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=rXtNBITnyMo7uI7RQPPuS9RiBDDdrxo2Y9+DnBVAANmFNByjJvGSdsN8jy7TmC388V 6JbQPv441jX7rMjYUUIzxGDuwtS6RmUUSu47u6GtPyvOD4H3i5h+3CIxJQ71NgNOCmFw ysoItKDKeTjFk3hrdartlo9VJJJhAkTJY/z20= Received: by 10.103.52.13 with SMTP id e13mr3961619muk.80.1218277125323; Sat, 09 Aug 2008 03:18:45 -0700 (PDT) Received: by 10.103.248.20 with HTTP; Sat, 9 Aug 2008 03:18:45 -0700 (PDT) Message-ID: <7f3ed2c30808090318u7c4e99can7ada79c2c064773c@mail.gmail.com> Date: Sat, 9 Aug 2008 12:18:45 +0200 To: "Dmitry Stogov" Cc: "Arnaud Le Blanc" , internals@lists.php.net, "Rasmus Lerdorf" , "Felipe Pena" , "Christian Stocker" , "Andi Gutmans" , "Stanislav Malyshev" In-Reply-To: <489C6BBA.8030101@zend.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <4899C4B4.3060902@liip.ch> <1218138548.5346.3.camel@felipe> <489B5285.1070000@lerdorf.com> <200808072237.01841.arnaud.lb@gmail.com> <7f3ed2c30808080011l3c62d416k7fd9b4dd455df99e@mail.gmail.com> <489C6BBA.8030101@zend.com> Subject: Re: [PHP-DEV] include bug in 5.3 From: hannes.magnusson@gmail.com ("Hannes Magnusson") On Fri, Aug 8, 2008 at 17:52, Dmitry Stogov wrote: > Hi, > > The attached patch is going to fix the problem. > It implements its own realpath() function, so we won't depend on system > anymore. It also improve realpath cache usage by caching intermediate > results. > > I tested it on Linux and Windows only and it seems to work without > problems. It breaks one test related to clearstatcache() function, but > this break is expected. > > Could you please test it. > Does it really fix the bug on FreeBSD? Yup. But it introduces a new one. realpath() no longer works as documented, now requiring all the components to exist. -Hannes