edje - edje_cc - try and make coverty ignore the leak (invalid)

hope that this does not reappear in future if changes happen in src.
CID 1132627
This commit is contained in:
Carsten Haitzler 2013-12-11 18:20:13 +09:00
parent 22da09105d
commit f779c49c89
1 changed files with 5 additions and 2 deletions

View File

@ -945,8 +945,11 @@ data_write_images(Eet_File *ef, int *image_num)
data_image_preload_done(iw, evas, im, NULL);
}
else
error_and_abort_image_load_error
(ef, img->entry, load_err);
{
error_and_abort_image_load_error
(ef, img->entry, load_err);
exit(1); // ensure static analysis tools know we exit
}
}
}
}