diff options
author | Pale Moon <git-repo@palemoon.org> | 2018-05-05 12:20:42 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-06-07 06:24:53 +0200 |
commit | 835749ed6d411f006fe9d90ba7479233dcfe8ec7 (patch) | |
tree | b866ac4ff5315484ce850cff7b9f41c53c76dc80 | |
parent | dc33e920701244600a0cca1d60deb7621288bb5b (diff) | |
download | uxp-835749ed6d411f006fe9d90ba7479233dcfe8ec7.tar.gz |
Perform some sanity checks on nsMozIconURI.
-rw-r--r-- | image/decoders/icon/nsIconURI.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/image/decoders/icon/nsIconURI.cpp b/image/decoders/icon/nsIconURI.cpp index 632a733fe9..473ded218c 100644 --- a/image/decoders/icon/nsIconURI.cpp +++ b/image/decoders/icon/nsIconURI.cpp @@ -688,7 +688,17 @@ nsMozIconURI::Deserialize(const URIParams& aParams) mContentType = params.contentType(); mFileName = params.fileName(); mStockIcon = params.stockIcon(); + + if (params.iconSize() < -1 || + params.iconSize() >= (int32_t) ArrayLength(kSizeStrings)) { + return false; + } mIconSize = params.iconSize(); + + if (params.iconState() < -1 || + params.iconState() >= (int32_t) ArrayLength(kStateStrings)) { + return false; + } mIconState = params.iconState(); return true; |