Do edje_color_class_list properly for e_remote and be sure to free the

returned list.


SVN revision: 28514
This commit is contained in:
Christopher Michael 2007-03-01 20:07:19 +00:00
parent e5b6fa8faf
commit 6c6ea559f9
1 changed files with 4 additions and 1 deletions

View File

@ -7435,8 +7435,11 @@ break;
#elif (TYPE == E_WM_IN)
GENERIC(HDL);
ENCODE_START();
ENCODE(edje_color_class_list(), e_ipc_codec_str_list_enc);
Evas_List *cc;
cc = edje_color_class_list();
ENCODE(cc, e_ipc_codec_str_list_enc);
SEND_DATA(E_IPC_OP_COLOR_CLASS_LIST_REPLY);
FREE_LIST(cc);
END_GENERIC();
#elif (TYPE == E_REMOTE_IN)
#endif