1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-15 11:41:13 +03:00

Fix compiler warnings on MSVC build.

FossilOrigin-Name: 01c4b5b84ec7ce589e20ea66e80011f092ab32f0
This commit is contained in:
shane
2009-11-03 19:42:30 +00:00
parent f16371d650
commit f639c40f77
7 changed files with 33 additions and 27 deletions

View File

@@ -1254,7 +1254,7 @@ static int getLastErrorMsg(int nBuf, char *zBuf){
*/
DWORD error = GetLastError();
DWORD dwLen = 0;
char *zOut;
char *zOut = 0;
if( isNT() ){
WCHAR *zTempWide = NULL;