Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 99997 invoked from network); 23 May 2007 12:04:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 23 May 2007 12:04:16 -0000 Received: (qmail 87049 invoked by uid 500); 23 May 2007 12:04:09 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 86979 invoked by uid 500); 23 May 2007 12:04:08 -0000 Mailing-List: contact commits-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list commits@harmony.apache.org Received: (qmail 86938 invoked by uid 99); 23 May 2007 12:04:08 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 23 May 2007 05:04:08 -0700 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 23 May 2007 05:03:43 -0700 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 4B93E714058 for ; Wed, 23 May 2007 05:03:22 -0700 (PDT) Message-ID: <5100860.1179921802307.JavaMail.jira@brutus> Date: Wed, 23 May 2007 05:03:22 -0700 (PDT) From: "Alexei Zakharov (JIRA)" To: commits@harmony.apache.org Subject: [jira] Assigned: (HARMONY-2530) [classlib][util] native memory leak when creating Deflater In-Reply-To: <9594036.1165522821099.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HARMONY-2530?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alexei Zakharov reassigned HARMONY-2530: ---------------------------------------- Assignee: Alexei Zakharov > [classlib][util] native memory leak when creating Deflater > ---------------------------------------------------------- > > Key: HARMONY-2530 > URL: https://issues.apache.org/jira/browse/HARMONY-2530 > Project: Harmony > Issue Type: Bug > Components: Classlib > Environment: All > Reporter: Ivan Volosyuk > Assigned To: Alexei Zakharov > > Huge native memory leak when creating deflater objects. > Simple test case. > import java.util.zip.Deflater; > public class Test { > public static void main(String[] args) { > for(int i = 0; i < 20000; i++) { > new Deflater(); > try { > Thread.sleep(10); > } catch (Exception e) { > } > System.out.println("Iteration = " + i); > } > } > } -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.