Bug 123291
Summary: | Memprof reports leak in getaliasbyname_r in glibc | ||||||
---|---|---|---|---|---|---|---|
Product: | [Fedora] Fedora | Reporter: | Need Real Name <gph-gw> | ||||
Component: | memprof | Assignee: | Søren Sandmann Pedersen <sandmann> | ||||
Status: | CLOSED WONTFIX | QA Contact: | Brian Brock <bbrock> | ||||
Severity: | medium | Docs Contact: | |||||
Priority: | medium | ||||||
Version: | rawhide | CC: | kem | ||||
Target Milestone: | --- | ||||||
Target Release: | --- | ||||||
Hardware: | i686 | ||||||
OS: | Linux | ||||||
Whiteboard: | |||||||
Fixed In Version: | Doc Type: | Bug Fix | |||||
Doc Text: | Story Points: | --- | |||||
Clone Of: | Environment: | ||||||
Last Closed: | 2006-09-08 02:16:57 UTC | Type: | --- | ||||
Regression: | --- | Mount Type: | --- | ||||
Documentation: | --- | CRM: | |||||
Verified Versions: | Category: | --- | |||||
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||
Cloudforms Team: | --- | Target Upstream Version: | |||||
Embargoed: | |||||||
Attachments: |
|
Description
Need Real Name
2004-05-16 02:17:12 UTC
Created attachment 100251 [details]
memprof dump when running /usr/bin/X11/xclock
gzipped to reduce size from 500k->12k
That must be memprof bug. Try for i in $(ldd `which xclock` | awk '$3 ~ /^\// {print $3}') `which xclock`; do nm -D $i | grep getaliasbyname && echo $i done Only libc.so.6 will be shown, and that library calls getaliasbyname_r only from getaliasbyname function and getaliasbyname is never called by libc.so itself. But the above command showed that neither xclock itself nor any of its dependencies but libc.so ever use this symbol. You can also run LD_DEBUG=all xclock 2>&1 | grep getaliasbyname to see that this function is not even looked up using dlsym. Similarly usleep, memprof was dropped from fc5 |