neutrino.cpp: fix malloc_stats call for uclibc

Origin commit data
------------------
Commit: d3ff93e12e
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2013-09-09 (Mon, 09 Sep 2013)
This commit is contained in:
[CST] Focus
2013-09-09 09:55:25 +04:00
parent efbba7147e
commit 580644ba02

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
}