Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Make sure the SQLite memory allocator is initialized before trying to use it to convert MBCS into UTF8. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | cmdline-expansion |
| Files: | files | file ages | folders |
| SHA1: |
cc09cda247c9f8442872a69830fc83ba |
| User & Date: | drh 2012-12-01 03:18:43.898 |
Context
|
2012-12-01
| ||
| 03:25 | Improvements to command-line argument glob expansion on windows. Globbing now works correctly when compiled with mingw-w64 and with msvc. It is mostly correct when compiled with mingw, but fails for some files with non-ascii names. ... (check-in: 8205c01cd4 user: drh tags: trunk) | |
| 03:18 | Make sure the SQLite memory allocator is initialized before trying to use it to convert MBCS into UTF8. ... (Closed-Leaf check-in: cc09cda247 user: drh tags: cmdline-expansion) | |
|
2012-11-30
| ||
| 16:59 | forgot makemake.tcl and Makefile.mingw.mistachkin changes ... (check-in: 08802c4af4 user: jan.nijtmans tags: cmdline-expansion) | |
Changes
Changes to src/main.c.
| ︙ | ︙ | |||
370 371 372 373 374 375 376 377 378 379 380 381 382 383 | FILE * zInFile; /* input FILE */ #if defined(_WIN32) WCHAR buf[MAX_PATH]; #endif g.argc = argc; g.argv = argv; #if defined(_WIN32) && defined(BROKEN_MINGW_CMDLINE) for(i=0; i<g.argc; i++) g.argv[i] = fossil_mbcs_to_utf8(g.argv[i]); #else for(i=0; i<g.argc; i++) g.argv[i] = fossil_filename_to_utf8(g.argv[i]); #endif #if defined(_WIN32) GetModuleFileNameW(NULL, buf, MAX_PATH); | > | 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 | FILE * zInFile; /* input FILE */ #if defined(_WIN32) WCHAR buf[MAX_PATH]; #endif g.argc = argc; g.argv = argv; sqlite3_initialize(); #if defined(_WIN32) && defined(BROKEN_MINGW_CMDLINE) for(i=0; i<g.argc; i++) g.argv[i] = fossil_mbcs_to_utf8(g.argv[i]); #else for(i=0; i<g.argc; i++) g.argv[i] = fossil_filename_to_utf8(g.argv[i]); #endif #if defined(_WIN32) GetModuleFileNameW(NULL, buf, MAX_PATH); |
| ︙ | ︙ |