diff options
author | timurrrr@chromium.org <timurrrr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-05 09:39:24 +0000 |
---|---|---|
committer | timurrrr@chromium.org <timurrrr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-05 09:39:24 +0000 |
commit | c3c1fd2f934e41c994c78564f5b44a102b40b428 (patch) | |
tree | 8ecfbd64fbd379c7aa4d0310d5fa5901138c83d3 /tools | |
parent | 646415fe4bbaab61d0dfc17bc9b518677552531f (diff) | |
download | chromium_src-c3c1fd2f934e41c994c78564f5b44a102b40b428.zip chromium_src-c3c1fd2f934e41c994c78564f5b44a102b40b428.tar.gz chromium_src-c3c1fd2f934e41c994c78564f5b44a102b40b428.tar.bz2 |
Suppress an uninitilized read in WebCore::StyleRuleImport::requestStyleSheet
Also move the suppression for bug 146500 that was written into the wrong section
BUG=145244
TBR=hbono
Review URL: https://chromiumcodereview.appspot.com/10908089
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@154925 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rw-r--r-- | tools/valgrind/memcheck/suppressions.txt | 22 |
1 files changed, 14 insertions, 8 deletions
diff --git a/tools/valgrind/memcheck/suppressions.txt b/tools/valgrind/memcheck/suppressions.txt index b9263f1..afea5da 100644 --- a/tools/valgrind/memcheck/suppressions.txt +++ b/tools/valgrind/memcheck/suppressions.txt @@ -5714,6 +5714,12 @@ fun:_ZL21cachedDeviceLuminancef } { + bug_145244 + Memcheck:Uninitialized + fun:_ZN7WebCore15StyleRuleImport17requestStyleSheetEPNS_13CSSStyleSheetERKNS_16CSSParserContextE + fun:_ZN7WebCore18StyleSheetContents26requestImportedStyleSheetsEPNS_13CSSStyleSheetE +} +{ bug_145644a Memcheck:Leak fun:_Znw* @@ -5968,6 +5974,14 @@ fun:_ZN2ui21GestureRecognizerImpl17AdvanceTouchQueueEPNS_15GestureConsumerEb fun:_ZN4aura10RootWindow23AdvanceQueuedTouchEventEPNS_6WindowEb } +{ + bug_146500 + Memcheck:Unaddressable + ... + fun:_ZN11EventSender17replaySavedEventsEv + fun:_ZN11EventSender7mouseUpERKN3WTF6VectorI10CppVariantLm0EEEPS2_ + fun:_ZN13CppBoundClass14MemberCallbackI11EventSenderE3runERKN3WTF6VectorI10CppVariantLm0EEEPS5_ +} #----------------------------------------------------------------------- @@ -6009,11 +6023,3 @@ ... fun:_ZN4aura19RootWindowHostLinuxC1EPNS_22RootWindowHostDelegateERKN3gfx4RectE } -{ - bug_146500 - Memcheck:Unaddressable - ... - fun:_ZN11EventSender17replaySavedEventsEv - fun:_ZN11EventSender7mouseUpERKN3WTF6VectorI10CppVariantLm0EEEPS2_ - fun:_ZN13CppBoundClass14MemberCallbackI11EventSenderE3runERKN3WTF6VectorI10CppVariantLm0EEEPS5_ -} |