Check force_count to be lower than MAX_FONT_COUNT

This commit is contained in:
krypt-n 2015-06-02 09:27:53 +02:00
parent a9f285fd28
commit a8fa2766fb
1 changed files with 5 additions and 0 deletions

View File

@ -612,6 +612,11 @@ parse (char *text)
void
font_load (const char *pattern)
{
if (font_count >= MAX_FONT_COUNT) {
fprintf(stderr, "Max font count reached. Could not load font \"%s\"\n", pattern);
return;
}
xcb_query_font_cookie_t queryreq;
xcb_query_font_reply_t *font_info;
xcb_void_cookie_t cookie;