|
From: Loiseleur M. <mic...@fr...> - 2005-12-25 14:32:30
|
Hello,
I don't have access to cvs, but I have found a small init error,
with valgrind, the god of memory.
It says to me :
==32053== Conditional jump or move depends on uninitialised value(s)
==32053== at 0x1359E5FA: litesql::SQLite3::begin() const (in
/usr/lib64/liblitesql.so.0.0.3)
==32053== by 0x1358D259: litesql::Database::drop() const (in
/usr/lib64/liblitesql.so.0.0.3)
[...]
And after viewing the code, here is the wrong line : (sqlite3.cpp:73)
SQLite3::SQLite3(string connInfo) : db(NULL) {
And here is the corrected line : (sqlite3.cpp:73)
SQLite3::SQLite3(string connInfo) : db(NULL), transaction (false) {
Thanks for putting it on cvs.
|