diff options
-rw-r--r-- | apps/x11_image.c | 2 | ||||
-rw-r--r-- | fitz/dev_text.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/x11_image.c b/apps/x11_image.c index 6392d868..e8cd4455 100644 --- a/apps/x11_image.c +++ b/apps/x11_image.c @@ -545,7 +545,7 @@ ximage_convert_rgba8888(PARAMS) int x, y; for (y = 0; y < h; y++) { for (x = 0; x < w; x++) { - dst[x] = src[x]; + ((unsigned *)dst)[x] = ((unsigned *)src)[x]; } dst += dststride; src += srcstride; diff --git a/fitz/dev_text.c b/fitz/dev_text.c index 1f88818d..e9d18bb3 100644 --- a/fitz/dev_text.c +++ b/fitz/dev_text.c @@ -1365,7 +1365,7 @@ insert_line_height(line_heights *lh, fz_text_style *style, float height) #endif /* If we have one already, add it in */ - for (i=0; i < lh->cap; i++) + for (i=0; i < lh->len; i++) { /* Match if we are within 5% */ if (lh->lh[i].style == style && lh->lh[i].height * 0.95 <= height && lh->lh[i].height * 1.05 >= height) |