Re: [sqlite] Re: [sqlite3] Conditional jump or move depends on uninitialised value(s)

2004-09-05 Thread Tiago Dionizio
Thanks for the clarification. I finally found the problem... i was assuming the sqlite3_context pointer for the step/finalize callbacks of aggregate functions was always the same and was saving it (on the step callback) for future use. Updating that pointer fixed things - all works just fine and

[sqlite] Re: [sqlite3] Conditional jump or move depends on uninitialised value(s)

2004-09-05 Thread D. Richard Hipp
Tiago Dionizio wrote: Using: SQLite 3 from cvs Fedora Core 2 gcc 3.3.3 I am currently working on trying to bind sqlite3 to Lua, and while testing things i encountered some problems regarding uninitialised values in the sqlite library. These tests were done using user defined functions, and more