]> granicus.if.org Git - libass/commitdiff
Remove arbitrary bitmap size limit large-bitmaps
authorRodger Combs <rodger.combs@gmail.com>
Sun, 12 Feb 2017 01:19:31 +0000 (19:19 -0600)
committerRodger Combs <rodger.combs@gmail.com>
Wed, 15 Feb 2017 00:55:03 +0000 (18:55 -0600)
We're not aware of any specific reason for this number to be used,
and actual potentially-dangerous cases should be handled by the
other limits.

Fixes #260

libass/ass_bitmap.c

index e46ef0a221c2f0336802fe636a15500f9cd06675..ff2eac461420a6fff2e8a05c16bfa721e36b4e03 100644 (file)
@@ -219,7 +219,7 @@ Bitmap *outline_to_bitmap(ASS_Renderer *render_priv,
 
     int mask = (1 << render_priv->engine->tile_order) - 1;
 
-    if (w < 0 || h < 0 || w > 8000000 / FFMAX(h, 1) ||
+    if (w < 0 || h < 0 ||
         w > INT_MAX - (2 * bord + mask) || h > INT_MAX - (2 * bord + mask)) {
         ass_msg(render_priv->library, MSGL_WARN, "Glyph bounding box too large: %dx%dpx",
                 w, h);
@@ -280,7 +280,7 @@ static Bitmap *outline_to_bitmap_ft(ASS_Renderer *render_priv,
     bbox.xMin >>= 6;
     bbox.yMax >>= 6;
 
-    if (w < 0 || h < 0 || w > 8000000 / FFMAX(h, 1) ||
+    if (w < 0 || h < 0 ||
         w > INT_MAX - 2 * bord || h > INT_MAX - 2 * bord) {
         ass_msg(render_priv->library, MSGL_WARN, "Glyph bounding box too large: %dx%dpx",
                 w, h);