提交 834b1794 authored 作者: Anthony Minessale's avatar Anthony Minessale

fix compile warning, storm's a comming lord

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@5764 d0543943-73ff-0310-b7d9-9358b9ac24b2
上级 2581d80e
......@@ -17,6 +17,7 @@
** if they are not used.
*/
#include "sqliteInt.h"
#include <stdlib.h>
#include <string.h>
......@@ -144,7 +145,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*)(intptr_t *)res.nData;
res.azResult[0] = (char*)(long)res.nData;
}
if( (rc&0xff)==SQLITE_ABORT ){
sqlite3_free_table(&res.azResult[1]);
......@@ -189,7 +190,7 @@ void sqlite3_free_table(
int i, n;
azResult--;
if( azResult==0 ) return;
n = (int)(intptr_t *)azResult[0];
n = (long) azResult[0];
for(i=1; i<n; i++){ if( azResult[i] ) sqlite3_free(azResult[i]); }
sqlite3_free(azResult);
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论