[LABEL] wmain(): Initialize 'szBuffer' (#2867)

Detected by Cppcheck: uninitvar.
This commit is contained in:
Serge Gautherie 2020-05-27 17:05:33 +02:00 committed by GitHub
parent 938df97b54
commit 9a614c82e1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -142,8 +142,8 @@ PromptYesNo(VOID)
int wmain(int argc, WCHAR *argv[])
{
WCHAR szRootPath[] = L" :\\";
WCHAR szBuffer[80];
WCHAR szLabel[80];
WCHAR szBuffer[80] = L"";
WCHAR szLabel[80] = L"";
WCHAR szOldLabel[80];
DWORD dwSerialNr;
INT len, i;
@ -151,9 +151,6 @@ int wmain(int argc, WCHAR *argv[])
/* Initialize the Console Standard Streams */
ConInitStdStreams();
/* set empty label string */
szLabel[0] = UNICODE_NULL;
/* print help */
if (argc > 1 && wcscmp(argv[1], L"/?") == 0)
{