]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Darwin14.supp should include suppression for known deliberate memory leak in setenv...
authorRhys Kidd <rhyskidd@gmail.com>
Mon, 26 Jan 2015 03:44:07 +0000 (03:44 +0000)
committerRhys Kidd <rhyskidd@gmail.com>
Mon, 26 Jan 2015 03:44:07 +0000 (03:44 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@14889

NEWS
darwin14.supp

diff --git a/NEWS b/NEWS
index 4cf2556014f361f50c66dd47efb012e1d115da3f..6d82de4bceb16f498a505c49622f2d276ec0ee55 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -75,6 +75,7 @@ where XXXXXX is the bug number as listed below.
 342221  socket connect false positive uninit memory for unknown af family
 342795  Internal glibc __GI_mempcpy call should be intercepted
 343012  Unhandled syscall 319 (memfd_create)
+343303  Fix known deliberate memory leak in setenv() on Mac OS X 10.10
 n-i-bz  Provide implementations of certain compiler builtins to support
         compilers who may not provide those
 n-i-bz  Old STABS code is still being compiled, but never used. Remove it.
index ee65c4bbae5eaa252e5a842b69d4297f66df2bb4..f4a83a99b87b076acd5f19e6d8902dc0703b1e1a 100644 (file)
    obj:*SystemConfiguration.framework*SystemConfiguration*
    obj:*SystemConfiguration.framework*SystemConfiguration*
 }
+
+# See https://bugs.kde.org/show_bug.cgi?id=188572 about this;  it's
+# unavoidable due to BSD setenv() semantics.
+{
+   macos-__setenv-leak-see-our-bug-188572
+   Memcheck:Leak
+   match-leak-kinds: definite
+   fun:malloc
+   fun:_owned_ptr_alloc
+   fun:setenv
+}
+