| 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 14 matching lines...) Expand all Loading... |
| 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 (https://github.com/DynamoRIO/drmemory/issues/1514) | 31 # sqlite3_* frames (https://github.com/DynamoRIO/drmemory/issues/1514) |
| 32 # so we just look for randomByte. | 32 # so we just look for randomByte. |
| 33 UNINITIALIZED READ | 33 UNINITIALIZED READ |
| 34 name=sqlite3_randomness UNINIT | 34 name=sqlite3_randomness UNINIT |
| 35 *!randomByte | 35 sql.dll!sqlite3_randomness |
| 36 |
| 37 UNINITIALIZED READ |
| 38 name=blink_web_dll_sqlite3_randomness UNINIT |
| 39 blink_web.dll!sqlite3_randomness |
| 36 | 40 |
| 37 # Intentional leak in WebKit Template Framework for ThreadData. | 41 # Intentional leak in WebKit Template Framework for ThreadData. |
| 38 LEAK | 42 LEAK |
| 39 name=intentional WTF ThreadData leak | 43 name=intentional WTF ThreadData leak |
| 40 ... | 44 ... |
| 41 *!WTF::wtfThreadData | 45 *!WTF::wtfThreadData |
| 42 | 46 |
| 43 # Happens when winhttp returns ERROR_WINHTTP_UNABLE_TO_DOWNLOAD_SCRIPT. | 47 # Happens when winhttp returns ERROR_WINHTTP_UNABLE_TO_DOWNLOAD_SCRIPT. |
| 44 LEAK | 48 LEAK |
| 45 name=http://crbug.com/125558 a | 49 name=http://crbug.com/125558 a |
| (...skipping 1845 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1891 | 1895 |
| 1892 UNINITIALIZED READ | 1896 UNINITIALIZED READ |
| 1893 name=bug_399842 | 1897 name=bug_399842 |
| 1894 skia.dll!S32A_Opaque_BlitRow32_SSE4 | 1898 skia.dll!S32A_Opaque_BlitRow32_SSE4 |
| 1895 | 1899 |
| 1896 UNINITIALIZED READ | 1900 UNINITIALIZED READ |
| 1897 name=bug_455417 | 1901 name=bug_455417 |
| 1898 *!std::char_traits<>::compare | 1902 *!std::char_traits<>::compare |
| 1899 ... | 1903 ... |
| 1900 *!*::*URLRequest*::TestBody | 1904 *!*::*URLRequest*::TestBody |
| OLD | NEW |