summaryrefslogtreecommitdiff
path: root/fitz/res_font.c
diff options
context:
space:
mode:
Diffstat (limited to 'fitz/res_font.c')
-rw-r--r--fitz/res_font.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fitz/res_font.c b/fitz/res_font.c
index eb5e4ef9..cfbb08bf 100644
--- a/fitz/res_font.c
+++ b/fitz/res_font.c
@@ -434,8 +434,8 @@ fz_newtype3font(char *name, fz_matrix matrix)
int i;
font = fz_newfont();
- font->t3procs = fz_malloc(sizeof(fz_buffer*) * 256);
- font->t3widths = fz_malloc(sizeof(float) * 256);
+ font->t3procs = fz_calloc(256, sizeof(fz_buffer*));
+ font->t3widths = fz_calloc(256, sizeof(float));
fz_strlcpy(font->name, name, sizeof(font->name));
font->t3matrix = matrix;