efl/emotion: Fix memory leak in gstreamer_ecore_x_check().

The suported atom gets allocated in the ecore_x call but we leave
the scope here without freeing the resource again. Free it when
going out of scope.

SVN revision: 83790
This commit is contained in:
Stefan Schmidt 2013-02-08 15:49:56 +00:00
parent 139737247d
commit c24aaf9bd0
1 changed files with 1 additions and 0 deletions

View File

@ -1110,6 +1110,7 @@ gstreamer_ecore_x_check(void)
window_manager_video = EINA_TRUE;
}
}
free(supported);
}
}
}