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

Unified Diff: src/core/SkValidatingReadBuffer.cpp

Issue 317003003: Fixing another clusterfuzz issue (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 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
« src/core/SkReadBuffer.cpp ('K') | « src/core/SkValidatingReadBuffer.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/core/SkValidatingReadBuffer.cpp
diff --git a/src/core/SkValidatingReadBuffer.cpp b/src/core/SkValidatingReadBuffer.cpp
index 037a99465b2853f34627b379ba32323277a3f3ea..382883e36fb9f2abbe1bc39563efd094771c00d4 100644
--- a/src/core/SkValidatingReadBuffer.cpp
+++ b/src/core/SkValidatingReadBuffer.cpp
@@ -119,11 +119,6 @@ void* SkValidatingReadBuffer::readEncodedString(size_t* length, SkPaint::TextEnc
return data;
}
-void SkValidatingReadBuffer::readPoint(SkPoint* point) {
- point->fX = this->readScalar();
- point->fY = this->readScalar();
-}
-
void SkValidatingReadBuffer::readMatrix(SkMatrix* matrix) {
size_t size = 0;
if (!fError) {
« src/core/SkReadBuffer.cpp ('K') | « src/core/SkValidatingReadBuffer.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698