drawtext: add missing braces around an if() block.

Prevents uninitialized read.

Signed-off-by: Anton Khirnov <anton@khirnov.net>
pull/3/merge
Andrey Utkin 13 years ago committed by Anton Khirnov
parent 86b57e4efe
commit e7f0bc8c0f
  1. 6
      libavfilter/vf_drawtext.c

@ -492,9 +492,11 @@ static int dtext_prepare_text(AVFilterContext *ctx)
/* get glyph */
dummy.code = code;
glyph = av_tree_find(dtext->glyphs, &dummy, glyph_cmp, NULL);
if (!glyph)
if (!glyph) {
ret = load_glyph(ctx, &glyph, code);
if (ret) return ret;
if (ret)
return ret;
}
y_min = FFMIN(glyph->bbox.yMin, y_min);
y_max = FFMAX(glyph->bbox.yMax, y_max);

Loading…
Cancel
Save