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

Avoid arithmetic on void pointers. (CVS 1489)

FossilOrigin-Name: 3d68703e2e4e793012cb3c13a6744e915475e006
This commit is contained in:
danielk1977
2004-05-29 02:44:02 +00:00
parent ef2cb63e9e
commit e7d00f5825
3 changed files with 10 additions and 10 deletions

View File

@@ -12,7 +12,7 @@
** This file contains routines used to translate between UTF-8,
** UTF-16, UTF-16BE, and UTF-16LE.
**
** $Id: utf.c,v 1.13 2004/05/28 16:00:22 drh Exp $
** $Id: utf.c,v 1.14 2004/05/29 02:44:02 danielk1977 Exp $
**
** Notes on UTF-8:
**
@@ -376,8 +376,8 @@ int sqlite3utf8CharLen(const char *pZ, int nByte){
*/
int sqlite3utf16ByteLen(const void *pZ, int nChar){
if( nChar<0 ){
const unsigned char *pC1 = pZ;
const unsigned char *pC2 = pZ+1;
const unsigned char *pC1 = (unsigned char *)pZ;
const unsigned char *pC2 = (unsigned char *)pZ+1;
while( *pC1 || *pC2 ){
pC1 += 2;
pC2 += 2;