evas map - new aa map has extra overflow with line list - fix it.

this fixes a feature added in this version of efl. as above.
This commit is contained in:
Carsten Haitzler 2015-01-07 17:21:46 +09:00
parent e1e1850d0e
commit 83eb1aa3c2
1 changed files with 2 additions and 2 deletions

View File

@ -76,8 +76,8 @@ FUNC_NAME(RGBA_Image *src, RGBA_Image *dst,
}
// allocate some spans to hold out span list
spans = alloca((yend - ystart + 1) * sizeof(Line));
memset(spans, 0, (yend - ystart + 1) * sizeof(Line));
spans = alloca((yend - ystart + 3) * sizeof(Line));
memset(spans, 0, (yend - ystart + 3) * sizeof(Line));
// calculate the spans list
_calc_spans(p, spans, ystart, yend, cx, cy, cw, ch);