mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
[KERNEL32]
No need to init string to empty This will make Coverity happier svn path=/trunk/; revision=54350
This commit is contained in:
parent
7ef16b3746
commit
5576067299
1 changed files with 1 additions and 1 deletions
|
@ -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 *******************************************/
|
||||
|
||||
|
|
Loading…
Reference in a new issue