Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:42880 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 80958 invoked from network); 31 Jan 2009 20:51:12 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 31 Jan 2009 20:51:12 -0000 Authentication-Results: pb1.pair.com header.from=greg@chiaraquartet.net; sender-id=unknown Authentication-Results: pb1.pair.com smtp.mail=greg@chiaraquartet.net; spf=permerror; sender-id=unknown Received-SPF: error (pb1.pair.com: domain chiaraquartet.net from 74.125.44.28 cause and error) X-PHP-List-Original-Sender: greg@chiaraquartet.net X-Host-Fingerprint: 74.125.44.28 yx-out-2324.google.com Received: from [74.125.44.28] ([74.125.44.28:58658] helo=yx-out-2324.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 06/9D-06825-FB9B4894 for ; Sat, 31 Jan 2009 15:51:11 -0500 Received: by yx-out-2324.google.com with SMTP id 3so330443yxj.83 for ; Sat, 31 Jan 2009 12:51:08 -0800 (PST) Received: by 10.64.183.1 with SMTP id g1mr1616482qbf.26.1233435068475; Sat, 31 Jan 2009 12:51:08 -0800 (PST) Received: from monster.local ([72.14.241.157]) by mx.google.com with ESMTPS id s12sm4099287qbs.30.2009.01.31.12.51.07 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sat, 31 Jan 2009 12:51:07 -0800 (PST) Message-ID: <4984B9B9.7070103@chiaraquartet.net> Date: Sat, 31 Jan 2009 14:51:05 -0600 User-Agent: Thunderbird 2.0.0.6 (Macintosh/20070807) MIME-Version: 1.0 To: PHP Developers Mailing List X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: memleak in zend_object_handlers.c From: greg@chiaraquartet.net (Greg Beaver) Hi, I don't yet have a short isolating script, but just wanted to give a heads up that I've been getting a memleak in zend_object_handlers.c on line 1215 in several scripts running 5.3.0beta1. The code in questions is in zend_std_object_get_class_name: *class_name = estrndup(ce->name, ce->name_length); This is never freed. Anyone else seen this leak? Greg