Re: [sqlite] Wrong filename handling in sqlite3_load_extension() for Cygwin

2014-02-21 Thread Jan Nijtmans
2014-02-20 14:39 GMT+01:00 Jan Nijtmans : > The function sqlite3_load_extension() on Cygwin expects a > win32 path, even though it is compiled for Cygwin. Here is a new version of my patch which fixes this bug, which handles better the case that the path does not contain

[sqlite] Wrong filename handling in sqlite3_load_extension() for Cygwin

2014-02-20 Thread Jan Nijtmans
The function sqlite3_load_extension() on Cygwin expects a win32 path, even though it is compiled for Cygwin. How to reproduce? First create some extension, e.g.: gcc -shared -o wholenumber.dll ext/misc/wholenumber.c Then compile the following little program: == main.c