Re: [sqlite] Crash in sqlite3_mutex_try [Was: SQLite 3.8.6 beta]

2014-08-23 Thread Jan Nijtmans
2014-08-22 9:14 GMT+02:00 Jan Nijtmans jan.nijtm...@gmail.com: It looks like this is on its way to being corrected: www.sqlite.org/src/info/2f59e71fbf However, I don't think this will work on Win95/98/NT Fixed here: http://www.sqlite.org/src/info/9fe0f0754c Thanks! No more

Re: [sqlite] Crash in sqlite3_mutex_try [Was: SQLite 3.8.6 beta]

2014-08-22 Thread Jan Nijtmans
2014-08-15 12:50 GMT+02:00 Jan Nijtmans jan.nijtm...@gmail.com: Looking at the function sqlite3_win32_is_nt() It should simply return 1 on any currently supported platform. Looking closely, it returns 0 on Windows RT, but who cares (leaving the why as practice for the reader) It looks

Re: [sqlite] Crash in sqlite3_mutex_try [Was: SQLite 3.8.6 beta]

2014-08-15 Thread Jan Nijtmans
2014-08-12 10:35 GMT+02:00 Jan Nijtmans jan.nijtm...@gmail.com: $ i686-w64-mingw32-gcc -c -DSQLITE_WIN32_NO_ANSI sqlite3.c sqlite3.c: In function ‘sqlite3_win32_is_nt’: sqlite3.c:33312:10: error: ‘sInfo’ undeclared (first use in this function) (sInfo.dwPlatformId ==

Re: [sqlite] Crash in sqlite3_mutex_try [Was: SQLite 3.8.6 beta]

2014-08-12 Thread Klaas V
 Jan wrote: ** can manually set this value to 1 to emulate Win98 behavior. */ Can anyone give me one good reason apart from nostalgia to support a MS system not supported by MS? Kind regards | Cordiali saluti | Vriendelijke groeten | Freundliche Grüsse, Klaas `Z4us` V  - OrcID

Re: [sqlite] Crash in sqlite3_mutex_try [Was: SQLite 3.8.6 beta]

2014-08-12 Thread Jan Nijtmans
2014-08-11 13:12 GMT+02:00 Jan Nijtmans jan.nijtm...@gmail.com: And below is a minimal patch which fixes this problem. Unfortunately, latest SQLite trunk, which fixes the SQLITE_WIN32_GETVERSIONEX problem brought back the SQLITE_WIN32_NO_ANSI problem I reported earlier -( $

Re: [sqlite] Crash in sqlite3_mutex_try [Was: SQLite 3.8.6 beta]

2014-08-12 Thread Adam Devita
1a) Somebody is paying you to do it. 1b) Incremental cost (or risk) of supporting it is small compared to the cost (or risk) of porting /upgrading Adam On Tue, Aug 12, 2014 at 2:46 AM, Klaas V klaasva...@yahoo.com wrote: Jan wrote: ** can manually set this value to 1 to emulate Win98

Re: [sqlite] Crash in sqlite3_mutex_try [Was: SQLite 3.8.6 beta]

2014-08-12 Thread jose isaias cabrera
Klaas V wrote... Jan wrote: ** can manually set this value to 1 to emulate Win98 behavior. */ Can anyone give me one good reason apart from nostalgia to support a MS system not supported by MS? There are 1000's of reason$ why, but if some win98 machines are doing jobs that are working

Re: [sqlite] Crash in sqlite3_mutex_try [Was: SQLite 3.8.6 beta]

2014-08-12 Thread Richard Hipp
On Tue, Aug 12, 2014 at 6:50 PM, jose isaias cabrera jic...@cinops.xerox.com wrote: Klaas V wrote... Jan wrote: ** can manually set this value to 1 to emulate Win98 behavior. */ Can anyone give me one good reason apart from nostalgia to support a MS system not supported by MS?

Re: [sqlite] Crash in sqlite3_mutex_try [Was: SQLite 3.8.6 beta]

2014-08-12 Thread jose isaias cabrera
Richard Hipp wrote... On Tue, Aug 12, 2014 at 6:50 PM, jose isaias cabrera jic...@cinops.xerox.com wrote: Klaas V wrote... Jan wrote: ** can manually set this value to 1 to emulate Win98 behavior. */ Can anyone give me one good reason apart from nostalgia to support a MS system not

[sqlite] Crash in sqlite3_mutex_try [Was: SQLite 3.8.6 beta]

2014-08-11 Thread Jan Nijtmans
2014-08-08 23:34 GMT+02:00 Richard Hipp: Please continue to test the latest snapshots and report any issues you find. I already reported this to sqlite-dev, but without test-case exposing the problem. Here is the test-case, which is 100% reproducable. And below is a minimal patch which fixes