forked from Mirrors/freeswitch
fix warn
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5763 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
parent
c1a5bb9b39
commit
2581d80ec1
@ -144,7 +144,7 @@ int sqlite3_get_table(
|
||||
rc = sqlite3_exec(db, zSql, sqlite3_get_table_cb, &res, pzErrMsg);
|
||||
if( res.azResult ){
|
||||
assert( sizeof(res.azResult[0])>= sizeof(res.nData) );
|
||||
res.azResult[0] = (char*)res.nData;
|
||||
res.azResult[0] = (char*)(intptr_t *)res.nData;
|
||||
}
|
||||
if( (rc&0xff)==SQLITE_ABORT ){
|
||||
sqlite3_free_table(&res.azResult[1]);
|
||||
@ -189,7 +189,7 @@ void sqlite3_free_table(
|
||||
int i, n;
|
||||
azResult--;
|
||||
if( azResult==0 ) return;
|
||||
n = (int)azResult[0];
|
||||
n = (int)(intptr_t *)azResult[0];
|
||||
for(i=1; i<n; i++){ if( azResult[i] ) sqlite3_free(azResult[i]); }
|
||||
sqlite3_free(azResult);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user