Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:47417 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 13908 invoked from network); 18 Mar 2010 22:37:14 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 18 Mar 2010 22:37:14 -0000 Authentication-Results: pb1.pair.com header.from=pierre.php@gmail.com; sender-id=pass; domainkeys=bad Authentication-Results: pb1.pair.com smtp.mail=pierre.php@gmail.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 74.125.82.42 as permitted sender) DomainKey-Status: bad X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 X-PHP-List-Original-Sender: pierre.php@gmail.com X-Host-Fingerprint: 74.125.82.42 mail-ww0-f42.google.com Received: from [74.125.82.42] ([74.125.82.42:49660] helo=mail-ww0-f42.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id FB/F6-10074-91BA2AB4 for ; Thu, 18 Mar 2010 17:37:14 -0500 Received: by wwf26 with SMTP id 26so544403wwf.29 for ; Thu, 18 Mar 2010 15:37:10 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type:content-transfer-encoding; bh=noAG38/rbPsL46g3WTEebAC24h+VyyNrh76yC0Jhivs=; b=OO7fR5o4wMe9mkGL68H7ku/txih3P1NhbyqrVfxAV3A5ZKEnSMzRbdGnJ4ECd40P+h Nc8ORCC3N2pXUTCzSoFVoxqoTLUzXGiaa7sA6OlmBjSHdKflJRbOdjuJP3Sgux3P0rqD El7Y2pGpnXZ7efYRW2gqBMjQ9aAiLw/wmb2D0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type :content-transfer-encoding; b=QXW8j3rdFSf9x86bgLCCgwsb5zdUIQD45/dNulaAVCJ7xLFMJF7tdbM1r/S3ekkHjT u9X/XctL69XuVulPsas4ZEgT8voeEdR5iKk60cAkfl5T3enEGUdT1JNo16Y+vArY9L24 DUYNJgBKhFnrTPNRlR9vJwlhpz8mKKJBYZQuM= MIME-Version: 1.0 Received: by 10.216.90.4 with SMTP id d4mr457889wef.135.1268951829891; Thu, 18 Mar 2010 15:37:09 -0700 (PDT) Date: Thu, 18 Mar 2010 23:37:09 +0100 Message-ID: To: Andrei Zmievski , PHP internals , Ilia Alshanetsky , =?ISO-8859-1?Q?Johannes_Schl=FCter?= Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Subject: Re: [PHP-CVS] svn: /php/php-src/branches/ PHP_5_2/configure.in PHP_5_2/ext/standard/file.c PHP_5_2/main/SAPI.c PHP_5_2/main/SAPI.h PHP_5_2/main/rfc1867.c PHP_5_3/configure.in PHP_5_3/ext/standard/file.c PHP_5_3/main/SAPI.c PHP_5_3/main/SAPI.h PHP_5_3 From: pierre.php@gmail.com (Pierre Joye) hi, CCing Ilia and Johannes as Andrei "discussed with the RM offline", I suppose it is Ilia, but Johannes is the 5.3 RM. For the record, this fix is about using size_t in the SAPI to fix issues with uploaded files > 2G. While wondering what was the reasoning behind this commit, I came to the conclusion that we should not do such thing in stable branches and we should respect something we decided long time ago, to stop to add bad options which can break PHP ABI or BC in one way or another. It is especially important as we all know how distributors tend to deal with such options. The other reasons why I would like to revert this commit are: - not sure there are so many people uploading 2G+ files - 5.2 should really be in security fixes mode only - 5.3 should be in bug fixing mode only (without ABI breaks, even optional = :) Opinions? Cheers, On Thu, Mar 18, 2010 at 10:07 PM, Andrei Zmievski wrote: > andrei =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 = =A0 Thu, 18 Mar 2010 21:07:38 +0000 > > Revision: http://svn.php.net/viewvc?view=3Drevision&revision=3D296358 > > Log: > Fix a few problems with large (2G-4G) file uploads. Added > --enable-large-uploads-fix switch because one change was in SAPI.h struct= ure. > > Changed paths: > =A0 =A0U =A0 php/php-src/branches/PHP_5_2/configure.in > =A0 =A0U =A0 php/php-src/branches/PHP_5_2/ext/standard/file.c > =A0 =A0U =A0 php/php-src/branches/PHP_5_2/main/SAPI.c > =A0 =A0U =A0 php/php-src/branches/PHP_5_2/main/SAPI.h > =A0 =A0U =A0 php/php-src/branches/PHP_5_2/main/rfc1867.c > =A0 =A0U =A0 php/php-src/branches/PHP_5_3/configure.in > =A0 =A0U =A0 php/php-src/branches/PHP_5_3/ext/standard/file.c > =A0 =A0U =A0 php/php-src/branches/PHP_5_3/main/SAPI.c > =A0 =A0U =A0 php/php-src/branches/PHP_5_3/main/SAPI.h > =A0 =A0U =A0 php/php-src/branches/PHP_5_3/main/rfc1867.c > > > -- > PHP CVS Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > --=20 Pierre @pierrejoye | http://blog.thepimp.net | http://www.libgd.org