1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-14 00:22:38 +03:00

Fixed wrong type in sqlite3_create_collation16 declaration and definition (UTF-16 string had been passed as const char* instead of const void*) (CVS 5276)

FossilOrigin-Name: 4215e3e5ae3376bd46e5e12eec14b8209c164830
This commit is contained in:
mihailim
2008-06-23 11:23:14 +00:00
parent 8468024da8
commit bda2e62c55
4 changed files with 13 additions and 13 deletions

View File

@@ -14,7 +14,7 @@
** other files are for internal use by SQLite and should not be
** accessed by users of the library.
**
** $Id: main.c,v 1.456 2008/06/23 09:50:51 danielk1977 Exp $
** $Id: main.c,v 1.457 2008/06/23 11:23:14 mihailim Exp $
*/
#include "sqliteInt.h"
#include <ctype.h>
@@ -1487,7 +1487,7 @@ int sqlite3_create_collation_v2(
*/
int sqlite3_create_collation16(
sqlite3* db,
const char *zName,
const void *zName,
int enc,
void* pCtx,
int(*xCompare)(void*,int,const void*,int,const void*)