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

Unified Diff: Source/wtf/LinkedHashSet.h

Issue 1120943002: Various ASan exemptions to allow Oilpan pre-sweep poisoning of unmarkeds. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
« Source/platform/heap/Handle.h ('K') | « Source/platform/heap/ThreadState.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/LinkedHashSet.h
diff --git a/Source/wtf/LinkedHashSet.h b/Source/wtf/LinkedHashSet.h
index 541976db84283fe73038ed326cd5e0b79ab42d6b..f780889c0846ab12b8b1622b040e0334244338f5 100644
--- a/Source/wtf/LinkedHashSet.h
+++ b/Source/wtf/LinkedHashSet.h
@@ -22,6 +22,7 @@
#ifndef WTF_LinkedHashSet_h
#define WTF_LinkedHashSet_h
+#include "platform/heap/AddressSanitizer.h"
#include "wtf/DefaultAllocator.h"
#include "wtf/HashSet.h"
#include "wtf/OwnPtr.h"
@@ -53,6 +54,7 @@ class LinkedHashSetNodeBase {
public:
LinkedHashSetNodeBase() : m_prev(this), m_next(this) { }
+ NO_SANITIZE_ADDRESS
haraken 2015/05/01 15:12:32 This looks valid.
void unlink()
{
if (!m_next)
« Source/platform/heap/Handle.h ('K') | « Source/platform/heap/ThreadState.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698