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

Unified Diff: include/core/SkMatrix.h

Issue 41253002: Checking structure sizes before reading them from memory to avoid overflowing the buffer's stream. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 2 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
« no previous file with comments | « no previous file | include/core/SkPath.h » ('j') | include/core/SkPath.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/core/SkMatrix.h
diff --git a/include/core/SkMatrix.h b/include/core/SkMatrix.h
index b6856d103c57fe45849b51c2d77c5d7449552afa..605e707a3441c1e6c2d7bf4345153f864a5a27c2 100644
--- a/include/core/SkMatrix.h
+++ b/include/core/SkMatrix.h
@@ -558,6 +558,10 @@ public:
// writeTo/readFromMemory will never return a value larger than this
kMaxFlattenSize = 9 * sizeof(SkScalar) + sizeof(uint32_t)
};
+ // return the number of bytes of the current object's flattened representation
+ uint32_t sizeInMemory() const;
reed1 2013/10/24 20:51:19 Doesn't writeToMemory(NULL) return this same value
+ // return the number of bytes to read
+ static uint32_t SizeToRead();
reed1 2013/10/24 20:51:19 This need not always be the same value for all mat
// return the number of bytes written, whether or not buffer is null
uint32_t writeToMemory(void* buffer) const;
// return the number of bytes read
« no previous file with comments | « no previous file | include/core/SkPath.h » ('j') | include/core/SkPath.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698