Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(15)

Side by Side Diff: tools/valgrind/memcheck/suppressions_mac.txt

Issue 552037: Add a Mac Valgrind suppression for an invalid free deep in the NIB loading procedure. (Closed)
Patch Set: Created 10 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # There are three kinds of suppressions in this file: 1 # There are three kinds of suppressions in this file:
2 # 1. Third party stuff we have no control over. 2 # 1. Third party stuff we have no control over.
3 # 3 #
4 # 2. Intentional unit test errors, stuff that is somehow a false positive 4 # 2. Intentional unit test errors, stuff that is somehow a false positive
5 # in our own code, or stuff that is so trivial it's not worth fixing. 5 # in our own code, or stuff that is so trivial it's not worth fixing.
6 # 6 #
7 # 3. Suppressions for real chromium bugs that are not yet fixed. 7 # 3. Suppressions for real chromium bugs that are not yet fixed.
8 # These should all be in chromium's bug tracking system. 8 # These should all be in chromium's bug tracking system.
9 # Periodically we should sweep this file and the bug tracker clean by 9 # Periodically we should sweep this file and the bug tracker clean by
10 # running overnight and removing outdated bugs/suppressions. 10 # running overnight and removing outdated bugs/suppressions.
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 { 158 {
159 # Also filed with Apple as rdar://7255382 159 # Also filed with Apple as rdar://7255382
160 bug_20459b 160 bug_20459b
161 Memcheck:Leak 161 Memcheck:Leak
162 fun:malloc_zone_malloc 162 fun:malloc_zone_malloc
163 fun:_CFRuntimeCreateInstance 163 fun:_CFRuntimeCreateInstance
164 fun:__CFArrayInit 164 fun:__CFArrayInit
165 fun:CFArrayCreateMutableCopy 165 fun:CFArrayCreateMutableCopy
166 fun:_ZN8Security12KeychainCore5Trust8evaluateEv 166 fun:_ZN8Security12KeychainCore5Trust8evaluateEv
167 } 167 }
168 {
169 bug_32564
170 Memcheck:Free
171 fun:free
172 fun:_cache_free_block
173 fun:_cache_collect_free
174 fun:_cache_fill
175 fun:_cache_addForwardEntry
176 fun:class_respondsToSelector
177 fun:-[NSNibOutletConnector establishConnection]
178 fun:-[NSIBObjectData nibInstantiateWithOwner:topLevelObjects:]
179 fun:loadNib
180 fun:+[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:]
181 fun:+[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:]
182 fun:-[NSWindowController loadWindow]
183 fun:-[NSWindowController window]
184 fun:_ZN12_GLOBAL__N_155EditSearchEngineControllerTest_ValidImageOriginals_Tes t8TestBodyEv
185 }
168 186
169 # 2. Intentional unit test errors, stuff that is somehow a false positive 187 # 2. Intentional unit test errors, stuff that is somehow a false positive
170 # in our own code, or stuff that is so trivial it's not worth fixing. 188 # in our own code, or stuff that is so trivial it's not worth fixing.
171 { 189 {
172 # NSObject pointers in a static std::map; we do technically leak them, but 190 # NSObject pointers in a static std::map; we do technically leak them, but
173 # only on shutdown, so it's not worth fixing. 191 # only on shutdown, so it's not worth fixing.
174 static_theme_cache 192 static_theme_cache
175 Memcheck:Leak 193 Memcheck:Leak
176 fun:calloc 194 fun:calloc
177 fun:_internal_class_createInstanceFromZone 195 fun:_internal_class_createInstanceFromZone
(...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after
670 Memcheck:Addr1 688 Memcheck:Addr1
671 fun:__CFBinaryPlistGetTopLevelInfo 689 fun:__CFBinaryPlistGetTopLevelInfo
672 fun:__CFTryParseBinaryPlist 690 fun:__CFTryParseBinaryPlist
673 fun:_CFPropertyListCreateFromXMLData 691 fun:_CFPropertyListCreateFromXMLData
674 fun:CFPropertyListCreateFromXMLData 692 fun:CFPropertyListCreateFromXMLData
675 fun:_DAUnserializeWithBytes 693 fun:_DAUnserializeWithBytes
676 fun:_DASessionCallback 694 fun:_DASessionCallback
677 fun:__CFMachPortPerform 695 fun:__CFMachPortPerform
678 fun:CFRunLoopRunSpecific 696 fun:CFRunLoopRunSpecific
679 } 697 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698