evas/cserve2: Some fixes for requests.

SVN revision: 71604
This commit is contained in:
Rafael Antognolli 2012-05-31 21:34:15 +00:00
parent 22706abe93
commit 30dcc1c83d
1 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ static struct _Request_Match
} _request_match[] =
{
{ CSERVE2_REQ_FONT_LOAD, SLAVE_FONT, FONT_LOAD },
{ CSERVE2_REQ_FONT_GLYPHS_LOAD, SLAVE_FONT, GLYPHS_LOAD },
{ CSERVE2_REQ_FONT_GLYPHS_LOAD, SLAVE_FONT, FONT_GLYPHS_LOAD },
{ CSERVE2_REQ_LAST, 0 }
};
@ -214,7 +214,7 @@ _slave_read_cb(Slave *s __UNUSED__, Slave_Command cmd __UNUSED__, void *msg, voi
EINA_LIST_FREE(req->waiters, w)
{
req->response(w->client, req->data, msg, w->rid);
req->funcs->response(w->client, req->data, msg, w->rid);
free(w);
}