| OLD | NEW |
| 1 # This file contains suppressions for the Dr.Memory tool, see | 1 # This file contains suppressions for the Dr.Memory tool, see |
| 2 # http://dev.chromium.org/developers/how-tos/using-drmemory | 2 # http://dev.chromium.org/developers/how-tos/using-drmemory |
| 3 # | 3 # |
| 4 # This file should contain suppressions only for the reports happening | 4 # This file should contain suppressions only for the reports happening |
| 5 # in the 'full' mode (drmemory_full). | 5 # in the 'full' mode (drmemory_full). |
| 6 # For the reports that can happen in the light mode (a.k.a. drmemory_light), | 6 # For the reports that can happen in the light mode (a.k.a. drmemory_light), |
| 7 # please use suppressions.txt instead. | 7 # please use suppressions.txt instead. |
| 8 | 8 |
| 9 ############################################################### | 9 ############################################################### |
| 10 # Known reports on the third party we have no control over. | 10 # Known reports on the third party we have no control over. |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 ADVAPI32.dll!WmiOpenBlock | 21 ADVAPI32.dll!WmiOpenBlock |
| 22 | 22 |
| 23 # Leaks inside GoogleDesktop - it injects into our processes for some reason | 23 # Leaks inside GoogleDesktop - it injects into our processes for some reason |
| 24 LEAK | 24 LEAK |
| 25 name=GoogleDesktop LEAK | 25 name=GoogleDesktop LEAK |
| 26 ... | 26 ... |
| 27 GoogleDesktopNetwork3.DLL!DllUnregisterServer | 27 GoogleDesktopNetwork3.DLL!DllUnregisterServer |
| 28 | 28 |
| 29 # They deliberately use uninit local var in sqlite random generator. | 29 # They deliberately use uninit local var in sqlite random generator. |
| 30 # Random bytes may mess up the call stack between randomByte and | 30 # Random bytes may mess up the call stack between randomByte and |
| 31 # sqlite3_* frames (http://code.google.com/p/drmemory/issues/detail?id=851). | 31 # sqlite3_* frames (http://code.google.com/p/drmemory/issues/detail?id=1514) |
| 32 # so we just look for randomByte. |
| 32 UNINITIALIZED READ | 33 UNINITIALIZED READ |
| 33 name=sqlite3_randomness UNINIT | 34 name=sqlite3_randomness UNINIT |
| 34 *!randomByte | 35 *!randomByte |
| 35 ... | |
| 36 *!sqlite3* | |
| 37 | 36 |
| 38 # Intentional leak in WebKit Template Framework for ThreadData. | 37 # Intentional leak in WebKit Template Framework for ThreadData. |
| 39 LEAK | 38 LEAK |
| 40 name=intentional WTF ThreadData leak | 39 name=intentional WTF ThreadData leak |
| 41 ... | 40 ... |
| 42 *!WTF::wtfThreadData | 41 *!WTF::wtfThreadData |
| 43 | 42 |
| 44 # Happens when winhttp returns ERROR_WINHTTP_UNABLE_TO_DOWNLOAD_SCRIPT. | 43 # Happens when winhttp returns ERROR_WINHTTP_UNABLE_TO_DOWNLOAD_SCRIPT. |
| 45 LEAK | 44 LEAK |
| 46 name=http://crbug.com/125558 a | 45 name=http://crbug.com/125558 a |
| (...skipping 1970 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2017 UNINITIALIZED READ | 2016 UNINITIALIZED READ |
| 2018 name=bug_347976,bug_348357 | 2017 name=bug_347976,bug_348357 |
| 2019 osmesa.dll!clip_span | 2018 osmesa.dll!clip_span |
| 2020 osmesa.dll!_swrast_write_rgba_span | 2019 osmesa.dll!_swrast_write_rgba_span |
| 2021 osmesa.dll!general_triangle | 2020 osmesa.dll!general_triangle |
| 2022 ... | 2021 ... |
| 2023 gpu.dll!gpu::gles2::GLES2DecoderImpl::DoDrawElements | 2022 gpu.dll!gpu::gles2::GLES2DecoderImpl::DoDrawElements |
| 2024 gpu.dll!gpu::gles2::GLES2DecoderImpl::HandleDrawElements | 2023 gpu.dll!gpu::gles2::GLES2DecoderImpl::HandleDrawElements |
| 2025 gpu.dll!gpu::gles2::GLES2DecoderImpl::DoCommand | 2024 gpu.dll!gpu::gles2::GLES2DecoderImpl::DoCommand |
| 2026 gpu.dll!gpu::CommandParser::ProcessCommand | 2025 gpu.dll!gpu::CommandParser::ProcessCommand |
| OLD | NEW |