Examples performance: Fix resource leak + potential null deref.

This example is completely broken and doesn't make much sense. Should be
overhauled and probably rewritten/dumped.

This is just to fix the more obvious errors (some pointed out by coverity).

CID1327356
This commit is contained in:
Tom Hacohen 2015-12-08 13:06:04 +00:00
parent c60f8fbae3
commit ca041fc99c
1 changed files with 4 additions and 5 deletions

View File

@ -493,15 +493,14 @@ _cb_fps_enable(void *data, Evas_Object *obj, void *event_info)
}
static void
_load_mesh(void *data, Evas_Object *obj, void *event_info)
_load_mesh(void *data EINA_UNUSED, Evas_Object *obj, void *event_info)
{
char *format = NULL, *tmp = NULL, *a = NULL;
char *format = NULL, *a = NULL;
char name[FILENAME_MAX];
int i = 0, j = 0;
if (event_info) tmp = strdup(event_info);
if (data) tmp = strdup((char *)data);
if (tmp)
if (event_info)
{
char *tmp = NULL;
tmp = strdup(event_info);
/*Get filename in backward*/
for (i = strlen(tmp) - 1; i >= 0; i--, j++)