From 5576067299bbb2aaf8dda65da4181df3c39b33bf Mon Sep 17 00:00:00 2001 From: Pierre Schweitzer Date: Fri, 11 Nov 2011 12:22:05 +0000 Subject: [PATCH] [KERNEL32] No need to init string to empty This will make Coverity happier svn path=/trunk/; revision=54350 --- reactos/dll/win32/kernel32/client/file/console.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/dll/win32/kernel32/client/file/console.c b/reactos/dll/win32/kernel32/client/file/console.c index 9c5a1ed8640..91c71262cf8 100644 --- a/reactos/dll/win32/kernel32/client/file/console.c +++ b/reactos/dll/win32/kernel32/client/file/console.c @@ -31,7 +31,7 @@ ULONG NrCtrlHandlers; ULONG NrAllocatedHandlers; #define INPUTEXENAME_BUFLEN 256 -static WCHAR InputExeName[INPUTEXENAME_BUFLEN] = L""; +static WCHAR InputExeName[INPUTEXENAME_BUFLEN]; /* Default Console Control Handler *******************************************/