clear cache on shutdown

SVN revision: 23536
This commit is contained in:
Carsten Haitzler 2006-06-22 19:22:26 +00:00
parent ba54808ee8
commit 268c8107f0
1 changed files with 4 additions and 1 deletions

View File

@ -394,7 +394,10 @@ EAPI int
eet_shutdown(void)
{
if (--eet_initcount == 0)
_eet_memfile_shutdown();
{
eet_clearcache();
_eet_memfile_shutdown();
}
return eet_initcount;
}