On 19 Jul 2013, at 6:50pm, Ashok Pitambar <[email protected]> wrote:
> I am using SQLite in my application, Is sqlite mandates or is > it necessary > to use Sqlite provided memory allocation(sqlit3_malloc()) functions instead > for native allocators(malloc())in applications? If yes why it is necessary? > Is there any harm for not using them. The sqlite3_malloc() function is intended just for use in SQLite's own functions. Don't worry about it unless you're modifying SQLite, or writing a SQLite extension. Simon. _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

