Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:42513 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 28672 invoked from network); 6 Jan 2009 17:38:22 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 6 Jan 2009 17:38:22 -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 72.14.220.154 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: 72.14.220.154 fg-out-1718.google.com Received: from [72.14.220.154] ([72.14.220.154:11530] helo=fg-out-1718.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 92/2A-07052-D0793694 for ; Tue, 06 Jan 2009 12:38:22 -0500 Received: by fg-out-1718.google.com with SMTP id 16so2678128fgg.23 for ; Tue, 06 Jan 2009 09:38:19 -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=NvHdN1dKDEd2CgbFLXiTh7yVDnF1ZZ7R/K9bOQb2aFY=; b=Z+8Pud6sv0FpTH6412Xx4Io5G+BxYksjjIOpHGSPYbpHpK4GEspUrOwYOZQMRQIuwM IHuD0tbKBeCGowRedYMiJsdmn5JMqgOHueTfP71aInnLlamux8O4Twbpa1wsErMrT2QS 48pdbVndgCqMHs5Cqs+fLNcEE53v/B6zNshtU= 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=PfpK14dNJhqRWKfaYRTay84RTX06+fuhYOyIct4upgbeD9MNCjZTCn+qEMYpmfKJ51 rGtMOzsF/8fb5xeMIjcaPbYd/4q4GCYF17uukEl+svMH6I37RdmqZiG026RUhJXmFOAX ofCWmwQLTVQkfqGWINbxCxBcrMWpFX3UF3H90= Received: by 10.86.31.18 with SMTP id e18mr12969883fge.72.1231263499118; Tue, 06 Jan 2009 09:38:19 -0800 (PST) Received: by 10.86.92.2 with HTTP; Tue, 6 Jan 2009 09:38:18 -0800 (PST) Message-ID: Date: Tue, 6 Jan 2009 18:38:18 +0100 To: "PHP Developers Mailing List" Cc: "Dmitry Stogov" , "Stanislav Malyshev" MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: regression in the new parameter parsing API, 5.3 From: pierre.php@gmail.com ("Pierre Joye") hi, The new parameter parser introduced a regression (testing with 5.3-cvs) on how "z!" is processed. Example code: if (0) { $authns = 1; $addtl = 1; } $result = dns_get_record("php.net", DNS_ANY, $authns, $addtl); print_r($result); var_dump($authns); var_dump($addtl); With 5.2, $authns and $addtl are correctly set (zval ptr is not NULL) but 5.3 gives NULL. Sorry to do not try to fix it myself, I sadly lack the time to take care of that right now. Cheers, -- Pierre http://blog.thepimp.net | http://www.libgd.org