On Mar 2, 2008, at 4:42 AM, Shawn Wilsher wrote: > Hey all, > > Over at Mozilla we've been seeing a large amount of crashes in > sqlite3_enable_shared_cache. The stack frames don't make a whole lot > of sense to me, so I thought I'd inform you and hope that you might > have a better idea as to what is going on. If you have any questions, > feel free to ask. If I don't know the answer, I'll get the people who > should know involved. We'd really like to try and resolve this issue, > so insight on this matter would be greatly appreciated. > > http://tinyurl.com/2393qs > > We are presently using the latest version of sqlite.
Hi Shawn, I put a pointer to the mozilla bug report here: http://www.sqlite.org/cvstrac/tktview?tn=2970 These stack traces don't make any sense to me either. The definition of sqlite3_enable_shared_cache() in SQLite cvs is: int sqlite3_enable_shared_cache(int enable){ sqlite3SharedCacheEnabled = enable; return SQLITE_OK; } sqlite3SharedCacheEnable is a file scoped int. Some of the stack traces have sqlite3_enable_shared_cache() being called from Mozilla code, but some others show it being called from other parts of SQLite that make no sense to me. This one is particularly odd: http://crash-stats.mozilla.com/report/index/8b54f1c5-e8aa-11dc- b466-001a4bd43e5c Stack overflow possibly? Will keep thinking this. Regards, Dan. _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

