Re-enable the used glyphs message now that it doesn't crash or leak

SVN revision: 72819
This commit is contained in:
Iván Briano 2012-06-25 17:42:58 +00:00
parent d26c554d60
commit 9a7ba8e27a
2 changed files with 2 additions and 3 deletions

View File

@ -2508,7 +2508,7 @@ cserve2_cache_font_glyphs_used(Client *client, const char *source, unsigned int
return 0;
}
_glyphs_load_request_prepare(req);
_glyphs_request_check(req);
groups = _glyphs_group_create(req);
// Promote SHMs which are still cached and in use
@ -2518,6 +2518,7 @@ cserve2_cache_font_glyphs_used(Client *client, const char *source, unsigned int
{
_font_shm_promote(gg->fc);
eina_list_free(gg->glyphs);
free(gg);
}
_glyphs_request_free(req);

View File

@ -316,13 +316,11 @@ _cserve2_client_font_glyphs_request(Client *client)
{
INF("Received CSERVE2_FONT_GLYPHS_USED command: RID=%d",
msg->base.rid);
/*
cserve2_cache_font_glyphs_used(client, source, msg->sourcelen,
fontpath, msg->pathlen,
msg->hint, msg->rend_flags, msg->size,
msg->dpi, glyphs, msg->nglyphs,
msg->base.rid);
*/
}
}