1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Fix an error made in the previous commit. The parameters to localtime_s() were accidentally reversed.

FossilOrigin-Name: 97e86ec6df4d893527fe9f43eb46163d9b06416a
This commit is contained in:
dan
2011-06-21 12:53:14 +00:00
parent c17d696c14
commit 30ce189dc9
3 changed files with 10 additions and 10 deletions

View File

@@ -429,9 +429,9 @@ static struct tm * osLocaltime_r(time_t *t, struct tm *pTm){
return localtime_r(t);
}
#elif defined(HAVE_LOCALTIME_S) && HAVE_LOCALTIME_S
static int osLocaltime_s(time_t *t, struct tm *pTm){
static int osLocaltime_s(struct tm *pTm, time_t *t){
if( sqlite3GlobalConfig.bLocaltimeFault ) return 1;
return (int)localtime_s(t, pTm);
return (int)localtime_s(pTm, t);
}
#else
static struct tm * osLocaltime(time_t *t){
@@ -497,7 +497,7 @@ static sqlite3_int64 localtimeOffset(
#elif defined(HAVE_LOCALTIME_S) && HAVE_LOCALTIME_S
{
struct tm sLocal;
if( 0!=osLocaltime_s(&t, &sLocal) ){
if( 0!=osLocaltime_s(&sLocal, &t) ){
sqlite3_result_error(pCtx, "error in localtime_s()", -1);
*pRc = SQLITE_ERROR;
return 0;