neutrino.cpp: fix malloc_stats call for uclibc

This commit is contained in:
[CST] Focus
2013-09-09 09:55:25 +04:00
parent d7224f4c99
commit d3ff93e12e

View File

@@ -4040,6 +4040,10 @@ void CNeutrinoApp::Cleanup()
delete CEitManager::getInstance();
printf("cleanup 6\n");fflush(stdout);
delete CVFD::getInstance();
#ifdef __UCLIBC__
malloc_stats(NULL);
#else
malloc_stats();
#endif
#endif
}