Daniel Espinosa <[email protected]> wrote: > Thanks for the response. > > Until now I just used GDB, cause is easy on Meson. I will try with > Valgrind, but I will be slow until I find a way to reproduce the problem. > > Just take the desition to report this bug, because just the issue trace the > fault deeply in the SQLite secuence of destruction, but any way, I will > check if the issue is in related on multi-threading destruction in GDA.
Alternatively to valgrind, build your app and SQLite by adding -fsanitize=address (assuming you use gcc or clang) and rerun the test normally. It's likely that it will then pinpoint to the problem in your application rather than in SQLite. Dominique _______________________________________________ sqlite-users mailing list [email protected] http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

