On 7/17/15, Sairam Gaddam <gaddamsairam at gmail.com> wrote: > I ran the test files which are present in SQLite for my custom build and I > got some memory leaks. > I got a message like, > > Writing unfreed memory log to "./memleak.txt" > > But I couldn't able to locate that file. > Can anyone kindly tell where to find that file or where the unfreed memory > log is written ???
I think memleak.txt is only created if you compile with -DSQLITE_MEMDEBUG. Use valgrind instead. It works much better. -- D. Richard Hipp drh at sqlite.org