diff options
author | timurrrr@chromium.org <timurrrr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-01 10:23:36 +0000 |
---|---|---|
committer | timurrrr@chromium.org <timurrrr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-01 10:23:36 +0000 |
commit | d89fe583768cabc47cc812a80f0288324e9fcfe0 (patch) | |
tree | af855a48b29f50755867fd39c3c73995ee2c13cf | |
parent | 68728ae12e71171a50bbc97808be39321f255c5b (diff) | |
download | chromium_src-d89fe583768cabc47cc812a80f0288324e9fcfe0.zip chromium_src-d89fe583768cabc47cc812a80f0288324e9fcfe0.tar.gz chromium_src-d89fe583768cabc47cc812a80f0288324e9fcfe0.tar.bz2 |
Add more suppressions for Dr. Memory false positives
TBR=glider
Review URL: http://codereview.chromium.org/3318002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@58157 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | tools/valgrind/drmemory/suppressions.txt | 35 |
1 files changed, 34 insertions, 1 deletions
diff --git a/tools/valgrind/drmemory/suppressions.txt b/tools/valgrind/drmemory/suppressions.txt index e1a8f7d..486545c 100644 --- a/tools/valgrind/drmemory/suppressions.txt +++ b/tools/valgrind/drmemory/suppressions.txt @@ -30,6 +30,22 @@ ntdll.dll!Rtl* ntdll.dll!Rtl* ntdll.dll!RtlFindActivationContextSectionString +UNINITIALIZED READ +... +SHELL32.dll!SHFileOperation* + +UNINITIALIZED READ +... +SHELL32.dll!SHGetFolderPath* + +UNINITIALIZED READ +... +SHELL32.dll!SHCreateDirectory* + +UNADDRESSABLE ACCESS +... +SHELL32.dll!SHFileOperation* + # http://code.google.com/p/drmemory/issues/detail?id=14 UNINITIALIZED READ ... @@ -51,6 +67,23 @@ system call NtContinue *!DebuggerProbe *!DebuggerKnownHandle +# http://code.google.com/p/drmemory/issues/detail?id=40 +UNINITIALIZED READ +... +WINSPOOL.DRV!* + +UNADDRESSABLE ACCESS +... +WINSPOOL.DRV!* + +INVALID HEAP ARGUMENT +... +WINSPOOL.DRV!* + +LEAK +... +WINSPOOL.DRV!* + ############################ # TODO(timurrrr): investigate these UNINITIALIZED READ @@ -59,7 +92,7 @@ UNINITIALIZED READ UNINITIALIZED READ ... -WINSPOOL.DRV!* +ADVAPI32.dll!CryptAcquireContext* ############################ # Real issues in Chromium |