fix possible NULL deref in efm_op

SVN revision: 80823
This commit is contained in:
Mike Blumenkrantz 2012-12-13 11:30:40 +00:00
parent c637b2874f
commit e0926014a1
1 changed files with 1 additions and 0 deletions

View File

@ -475,6 +475,7 @@ _e_fm_op_remove_link_task(E_Fm_Op_Task *task)
{
E_Fm_Op_Task *ltask;
if (!task) return;
if (task->link)
{
ltask = eina_list_data_get(task->link);