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

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

Issue 181003: Suppress a leak of a CFMutableArray of certs in X509Certificate::Verify.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 3 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 | Annotate | Revision Log
« 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')
Property Changes:
Added: svn:eol-style
+ LF
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 486 matching lines...) Expand 10 before | Expand all | Expand 10 after
497 { 497 {
498 bug_18984 498 bug_18984
499 Memcheck:Free 499 Memcheck:Free
500 fun:_ZdlPv 500 fun:_ZdlPv
501 fun:_ZN7WebCore15CSSSelectorList19adoptSelectorVectorERN3WTF6VectorIPNS_11CSS SelectorELm0EEE 501 fun:_ZN7WebCore15CSSSelectorList19adoptSelectorVectorERN3WTF6VectorIPNS_11CSS SelectorELm0EEE
502 ... 502 ...
503 fun:_ZN7WebCore9CSSParser15createStyleRuleEPN3WTF6VectorIPNS_11CSSSelectorELm 0EEE 503 fun:_ZN7WebCore9CSSParser15createStyleRuleEPN3WTF6VectorIPNS_11CSSSelectorELm 0EEE
504 fun:_Z10cssyyparsePv 504 fun:_Z10cssyyparsePv
505 fun:_ZN7WebCore9CSSParser10parseSheetEPNS_13CSSStyleSheetERKNS_6StringE 505 fun:_ZN7WebCore9CSSParser10parseSheetEPNS_13CSSStyleSheetERKNS_6StringE
506 } 506 }
507 {
508 # Leak of a CFMutableArray of certs in X509Certificate::Verify.
509 bug_20459
510 Memcheck:Leak
511 fun:malloc_zone_malloc
512 fun:_CFRuntimeCreateInstance
513 fun:__CFArrayInit
514 fun:CFArrayCreateMutableCopy
515 fun:_ZNK3net15X509Certificate6VerifyERKSsiPNS_16CertVerifyResultE
516 fun:_ZN3net12CertVerifier7Request8DoVerifyEv
517 fun:_ZN14RunnableMethodIN3net12CertVerifier7RequestEMS2_FvvE6Tuple0E3RunEv
518 fun:-[TaskOperation main]
519 fun:-[NSOperation start]
520 fun:__runop
521 fun:_pthread_wqthread
522 fun:start_wqthread
523 }
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