I was just trying out Microsoft Application Verifier, and it is reporting a memory leak somewhere. (Looks like some 64K size block isn't getting freed?)
This is in the libretro_get_system_info phase of Load Core, where it loads the core DLL file, queries for file support, then unloads the DLL file.
Snes9x 2010, 2005, and 2002 do not trigger the memory leak upon loading and unloading the DLL.
I was just trying out Microsoft Application Verifier, and it is reporting a memory leak somewhere. (Looks like some 64K size block isn't getting freed?)
This is in the
libretro_get_system_info
phase of Load Core, where it loads the core DLL file, queries for file support, then unloads the DLL file.Snes9x 2010, 2005, and 2002 do not trigger the memory leak upon loading and unloading the DLL.
edit:
Found the leak: (in smp.cpp)
There's no corresponding delete.