OK, so the codec was working - and I was thinking it was my fault :(

SVN revision: 15071
This commit is contained in:
handyande 2005-06-02 23:29:58 +00:00 committed by handyande
parent 2833c26988
commit 9ec40e20f7
1 changed files with 2 additions and 1 deletions

View File

@ -169,7 +169,8 @@ e_ipc_codec_str_list_dec(char *data, int bytes, Evas_List **dest)
{
E_Ipc_Str *str_node;
str_node->str = l->data;
str_node = malloc(sizeof(E_Ipc_Str));
str_node = l->data;
list = evas_list_append(list, str_node->str);
}
if (dest) *dest = list;