Fix compiling.
authorEmanuele Aliberti <ea@iol.it>
Sun, 25 Sep 2005 13:56:45 +0000 (13:56 +0000)
committerEmanuele Aliberti <ea@iol.it>
Sun, 25 Sep 2005 13:56:45 +0000 (13:56 +0000)
svn path=/trunk/; revision=18053

reactos/subsys/system/notepad/text.c

index 9a17c16..8436f55 100644 (file)
@@ -63,7 +63,7 @@ BOOL ReadText(HANDLE hFile, LPWSTR *ppszText, DWORD *pdwTextLen, int *piEncoding
        DWORD dwPos, i;
        DWORD dwCharCount;
        BOOL bSuccess = FALSE;
-       BYTE b;
+       BYTE b = 0;
        int iEncoding = ENCODING_ANSI;
        int iCodePage;
        WCHAR szCrlf[2] = { '\r', '\n' };
@@ -216,14 +216,14 @@ done:
 
 static BOOL WriteEncodedText(HANDLE hFile, LPCWSTR pszText, DWORD dwTextLen, int iEncoding)
 {
-       LPBYTE pBytes;
+       LPBYTE pBytes = NULL;
        LPBYTE pAllocBuffer = NULL;
        DWORD dwPos = 0;
        DWORD dwByteCount;
        BYTE buffer[1024];
        UINT iCodePage;
        DWORD dwDummy, i;
-       BOOL bSuccess;
+       BOOL bSuccess = FALSE;
        int iBufferSize, iRequiredBytes;
        BYTE b;