diff options
author | Markus Teich <markus.teich@stusta.mhn.de> | 2015-11-17 00:23:51 +0100 |
---|---|---|
committer | Markus Teich <markus.teich@stusta.mhn.de> | 2015-11-17 00:23:51 +0100 |
commit | b1cb3bbc2085bc30e0a456d02e7eb68d5665a5b2 (patch) | |
tree | d188ef6f3855ce86227b848c30df935aace6f4d7 /sent.c | |
parent | 84734c73e82b8b30e2eef82c192a53010fb2d35f (diff) |
fix another index overflow issue
Diffstat (limited to 'sent.c')
-rw-r--r-- | sent.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -326,7 +326,8 @@ void getfontsize(Slide *s, unsigned int *width, unsigned int *height) for (j = NUMFONTSCALES - 1; j >= 0; j--) if (fonts[j]->h * lfac <= xw.uh) break; - drw_setfontset(d, fonts[++j]); + LIMIT(j, 0, NUMFONTSCALES - 1); + drw_setfontset(d, fonts[j]); /* fit width */ *width = 0; |