summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAnsis Brammanis <brammanis@gmail.com>2016-03-30 15:39:50 -0700
committerAnsis Brammanis <brammanis@gmail.com>2016-03-31 10:27:42 -0700
commit415ea295c512c52731a98b4a83ec804434ff0d25 (patch)
tree739a555f4351555bfabdb1220f4285a9cb6c2d16 /src
parent3f10f74a70f992f1fdbc2475b8fa3007ae3b2c5f (diff)
downloadqtlocation-mapboxgl-415ea295c512c52731a98b4a83ec804434ff0d25.tar.gz
[core] make sprite metrics checking stricter
- check that sprite metrics are within the bounds of the sprite. fix #714 - make sprite metrics problems Errors instead of Warnings - check for negative image width, height
Diffstat (limited to 'src')
-rw-r--r--src/mbgl/sprite/sprite_parser.cpp16
1 files changed, 6 insertions, 10 deletions
diff --git a/src/mbgl/sprite/sprite_parser.cpp b/src/mbgl/sprite/sprite_parser.cpp
index 9baf933177..9fbca51112 100644
--- a/src/mbgl/sprite/sprite_parser.cpp
+++ b/src/mbgl/sprite/sprite_parser.cpp
@@ -20,9 +20,10 @@ SpriteImagePtr createSpriteImage(const PremultipliedImage& image,
const double ratio,
const bool sdf) {
// Disallow invalid parameter configurations.
- if (width == 0 || height == 0 || ratio <= 0 || ratio > 10 || width > 1024 ||
- height > 1024) {
- Log::Warning(Event::Sprite, "Can't create sprite with invalid metrics");
+ if (width <= 0 || height <= 0 || width > 1024 || height > 1024 ||
+ ratio <= 0 || ratio > 10 ||
+ srcX + width > image.width || srcY + height > image.height) {
+ Log::Error(Event::Sprite, "Can't create sprite with invalid metrics");
return nullptr;
}
@@ -31,16 +32,11 @@ SpriteImagePtr createSpriteImage(const PremultipliedImage& image,
auto srcData = reinterpret_cast<const uint32_t*>(image.data.get());
auto dstData = reinterpret_cast<uint32_t*>(dstImage.data.get());
- const int32_t maxX = std::min(uint32_t(image.width), uint32_t(width + srcX)) - srcX;
- assert(maxX <= int32_t(image.width));
- const int32_t maxY = std::min(uint32_t(image.height), uint32_t(height + srcY)) - srcY;
- assert(maxY <= int32_t(image.height));
-
// Copy from the source image into our individual sprite image
- for (uint16_t y = 0; y < maxY; ++y) {
+ for (uint16_t y = 0; y < height; ++y) {
const auto dstRow = y * width;
const auto srcRow = (y + srcY) * image.width + srcX;
- for (uint16_t x = 0; x < maxX; ++x) {
+ for (uint16_t x = 0; x < width; ++x) {
dstData[dstRow + x] = srcData[srcRow + x];
}
}