I'm learning C++. When I call _run_file("otherapp.exe","")
, current app's memory raise up 1MB. Is any memory leak here? If have, how to fix it? Thank you very much!
void _run_file(LPSTR file, LPSTR params)
{
ShellExecute(NULL,NULL,file,params,NULL,NULL);
}