From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17445 invoked by alias); 13 May 2012 16:07:30 -0000 Received: (qmail 17414 invoked by uid 22791); 13 May 2012 16:07:24 -0000 X-SWARE-Spam-Status: No, hits=-2.9 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00,SUBJ_OBFU_PUNCT_FEW X-Spam-Check-By: sourceware.org Received: from localhost (HELO sourceware.org) (127.0.0.1) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sun, 13 May 2012 16:07:10 +0000 From: "hjl.tools at gmail dot com" To: glibc-bugs@sources.redhat.com Subject: [Bug libc/14104] New: Unfreed memory in sysdeps/unix/sysv/linux/check_pf.c Date: Sun, 13 May 2012 16:07:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: glibc X-Bugzilla-Component: libc X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: hjl.tools at gmail dot com X-Bugzilla-Status: NEW X-Bugzilla-Priority: P2 X-Bugzilla-Assigned-To: unassigned at sourceware dot org X-Bugzilla-Target-Milestone: 2.16 X-Bugzilla-Changed-Fields: Message-ID: X-Bugzilla-URL: http://sourceware.org/bugzilla/ Auto-Submitted: auto-generated Content-Type: text/plain; charset="UTF-8" MIME-Version: 1.0 Mailing-List: contact glibc-bugs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: glibc-bugs-owner@sourceware.org X-SW-Source: 2012-05/txt/msg00193.txt.bz2 http://sourceware.org/bugzilla/show_bug.cgi?id=14104 Bug #: 14104 Summary: Unfreed memory in sysdeps/unix/sysv/linux/check_pf.c Product: glibc Version: unspecified Status: NEW Severity: normal Priority: P2 Component: libc AssignedTo: unassigned@sourceware.org ReportedBy: hjl.tools@gmail.com CC: drepper.fsp@gmail.com Classification: Unclassified Since cache isn't freed in sysdeps/unix/sysv/linux/check_pf.c, "make xcheck" reports: [hjl@gnu-6 build-x86_64-linux]$ cat posix/bug-ga2-mem Memory not freed: ----------------- Address Size Caller 0x00005555557791e0 0x78 at 0x7ffff7d5d989 [hjl@gnu-6 build-x86_64-linux]$ We should add /* Make sure cache is freed before exiting. */ libc_freeres_fn (freecache) { if (cache) free (cache); } or /* Make sure cache is freed before exiting. */ libc_freeres_fn (freecache) { free (cache); } -- Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.