Re: [sqlite] No such column

2019-12-23 Thread Aydin Ozgur Yagmur
Thank you very much Simon, it is quite explicative. On Mon, Dec 23, 2019 at 11:38 AM Simon Slavin wrote: > On 23 Dec 2019, at 6:19am, Aydin Ozgur Yagmur wrote: > > > I have been using sqlite database in linux by mounting. > > Nearly all times it works well. But when testing with customer, I >

[sqlite] Heap overflow leads to crashing or memory dumping(possibly database leaking)

2019-12-23 Thread Yongheng Chen
Hi, We found a heap overflow bug in sqlite, which leads to crashing and memory dumping. Here is the PoC: — create table v0(v1 char); insert into v0 values ('1'); create table v2(v3 text); insert into v2 values

[sqlite] zipfile.c memory leak

2019-12-23 Thread Ralf Junker
Checkin f5ee3042 introduces a memory leak in zipfile.c. It is still present on trunk, tested with 0b1dbd60. Cause: zipfileDeflate() calls deflateInit2() twice and allocates zlib stream memory twice in certain situations. Also, deflateEnd(); may not be called if aOut is not allocated after an

Re: [sqlite] RBU fails as of checkin f84a1539 - fixed

2019-12-23 Thread Ralf Junker
On 22.12.2019 17:23, Keith Medcalf wrote: I get: RBU error: near ")": syntax error ERROR 1, expected 101 Done - Press ENTER to exit. with the current trunk ... Thanks for following up on this. I spotted a typo in the test code. Corrected version below. With that, Dan's fix works for me on

Re: [sqlite] No such column

2019-12-23 Thread Simon Slavin
On 23 Dec 2019, at 6:19am, Aydin Ozgur Yagmur wrote: > I have been using sqlite database in linux by mounting. > Nearly all times it works well. But when testing with customer, I encounter > "No such column" error. SQLite does not support accessing the database drive across a network. No