evas/wayland_shm: unlink the REAL temporary file

Signed-off-by: U. Artie Eoff <ullysses.a.eoff@intel.com>
This commit is contained in:
U. Artie Eoff 2014-05-14 16:13:33 -07:00
parent 0782e96c36
commit e186f6dbc5
1 changed files with 2 additions and 3 deletions

View File

@ -333,6 +333,8 @@ _evas_swapper_shm_pool_new(Wl_Swapper *ws)
return EINA_FALSE;
}
/* unlink the temp file */
unlink(name);
free(name);
/* try to truncate the tmp file to requested size */
@ -346,9 +348,6 @@ _evas_swapper_shm_pool_new(Wl_Swapper *ws)
/* mem map the file */
ws->data = mmap(NULL, size, (PROT_READ | PROT_WRITE), MAP_SHARED, fd, 0);
/* unlink the tmp file */
unlink(tmp);
/* if we failed to mem map the file, return an error */
if (ws->data == MAP_FAILED)
{