Memory leaks (HDF 1.8.12, Windows x64, Visual Studio 2010).

Hello all,

I stumbled across HDF and it seems like it could be the answer to a data storage problem I have at the moment.

I struggled to make use of the pre-built binaries, so I created a Win32 project (no MFC), included all the c/h files and built a lib. My existing application links to the lib, and then calls the following.

file_id = H5Fcreate("tony.hdf5", H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT);
status = H5Fclose(file_id);

On closing my application, I get a load of memory leaks.

I'm hoping that I just need to call a function to clear things up, but I've come to a dead end when searching. All I really found was
http://hdf-forum.184993.n3.nabble.com/memory-leaks-with-a-simple-open-close-td4025625.html

Can anyone offer any advice?

Thanks in advance,

Tony.