Re: [sqlite] LSM Leaks memory

2014-05-07 Thread Dan Kennedy
On 05/07/2014 04:51 AM, sql...@charles.derkarl.org wrote: I In a more complex program, lsm seems to leak memory to no bounds, causing my application. Are bug reports against LSM even helpful? I think they are. Thanks for the report. Now fixed here:

[sqlite] LSM Leaks memory

2014-05-06 Thread sqlite
I have this trivial program: int main(int argc, char **argv) { lsm_db* db; lsm_new(lsm_default_env(), ); lsm_open(db, "lsm"); lsm_cursor *csr; lsm_csr_open(db, ); lsm_csr_seek(csr, "a", 1, LSM_SEEK_GE); lsm_csr_seek(csr, "a", 1,