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

Side by Side Diff: chrome/tools/build/win/win-syzyasan-filter.txt

Issue 14195017: Prevents SyzyASAN from instrumenting the 'OnMouseRange' function. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 8 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
« 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')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 # 4 #
5 # This file describes filtering rules that will be applied when applying 5 # This file describes filtering rules that will be applied when applying
6 # Syzygy ASAN instrumentation to chrome.dll. It is intended to be used for 6 # Syzygy ASAN instrumentation to chrome.dll. It is intended to be used for
7 # disabling instrumentation of functions with known and deferred bugs, allowing 7 # disabling instrumentation of functions with known and deferred bugs, allowing
8 # functional instrumented builds of Chrome to be produced in the meantime. 8 # functional instrumented builds of Chrome to be produced in the meantime.
9 # 9 #
10 # See chrome_syzygy.gyp and syzygy_instrument.py for more details. 10 # See chrome_syzygy.gyp and syzygy_instrument.py for more details.
11 11
12 # This prevents SyzyASAN from instrumenting the 'rc4_wordconv' function, which 12 # This prevents SyzyASAN from instrumenting the 'rc4_wordconv' function, which
13 # has a known heap-buffer-overflow bug: 13 # has a known heap-buffer-overflow bug:
14 # https://code.google.com/p/chromium/issues/detail?id=174140 14 # https://code.google.com/p/chromium/issues/detail?id=174140
15 +function:rc4_wordconv 15 +function:rc4_wordconv
16
17 # This prevents SyzyASAN from instrumenting the 'OnMouseRange' function, which
18 # has a known use-after-free bug:
19 # https://code.google.com/p/chromium/issues/detail?id=145293
gab 2013/04/19 14:24:33 nit: Typically links to bugs in comments use the s
Sébastien Marchand 2013/04/19 15:30:09 Done.
20 +function:views::HWNDMessageHandler::OnMouseRange
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