From a7e83263004371aaa8d3bb75ae7f98eb66316c61 Mon Sep 17 00:00:00 2001 From: psychon Date: Mon, 23 Feb 2009 19:24:41 +0000 Subject: [PATCH] Fix some "uninitialized variable" compiler warning git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@1392 726aef4b-f618-498e-8847-2d620e286838 --- HTTPSock.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HTTPSock.cpp b/HTTPSock.cpp index 2000296d..e2b3d0ad 100644 --- a/HTTPSock.cpp +++ b/HTTPSock.cpp @@ -188,7 +188,7 @@ bool CHTTPSock::PrintFile(const CString& sFileName, CString sContentType) { char szBuf[4096]; unsigned long long iLen = 0; - int i; + int i = 0; PrintHeader(iSize, sContentType);