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

Unified Diff: third_party/WebKit/Source/core/css/properties/CSSPropertyAPIOffsetPath.cpp

Issue 2918283002: Added null safety to CSSParserContext args in CSSPropertyOffsetPathUtils (Closed)
Patch Set: Created 3 years, 6 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
Index: third_party/WebKit/Source/core/css/properties/CSSPropertyAPIOffsetPath.cpp
diff --git a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIOffsetPath.cpp b/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIOffsetPath.cpp
index bb10b5c7bfb48076c56b9d5ab3fd91e5afd5296b..6712e7506edbafb95393015e49e7833744551c12 100644
--- a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIOffsetPath.cpp
+++ b/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIOffsetPath.cpp
@@ -13,7 +13,7 @@ const CSSValue* CSSPropertyAPIOffsetPath::parseSingleValue(
CSSParserTokenRange& range,
const CSSParserContext& context,
const CSSParserLocalContext&) {
- return CSSPropertyOffsetPathUtils::ConsumeOffsetPath(range, &context);
+ return CSSPropertyOffsetPathUtils::ConsumeOffsetPath(range, context);
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698