Ulric Auger wrote: > Hi, > > Since I updated to SQLite 3.6.1 I have a memory leak when my application > exits. > > If I compile using SQLite 3.5.8 I don't have the memory leak.
Be sure to call sqlite3_shutdown() just before the application exits-- this should free any outstanding resources held by SQLite. (As a test, I commented out this shutdown call, and was able to reproduce the same leak warning message you reported.) _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

