mirror of
https://github.com/brain-hackers/brainlilo
synced 2024-11-01 07:48:00 +09:00
Initialize wcbuf with an empty initializer
This commit is contained in:
parent
a7f9d3126b
commit
78554fba0b
@ -175,8 +175,7 @@ static void ShowMessage(std::string msg, std::string title, UINT typ)
|
||||
|
||||
static bool doLinux()
|
||||
{
|
||||
wchar_t wcbuf[256];
|
||||
int i;
|
||||
wchar_t wcbuf[256] = {};
|
||||
|
||||
std::ifstream iVersion;
|
||||
std::string line, model;
|
||||
@ -187,11 +186,6 @@ static bool doLinux()
|
||||
HANDLE hUBoot;
|
||||
DWORD wReadSize;
|
||||
|
||||
for (i = 0; i < int(sizeof(wcbuf) / sizeof(wcbuf[0])); i++)
|
||||
{
|
||||
wcbuf[i] = '\0';
|
||||
}
|
||||
|
||||
iVersion.open("\\NAND\\version.txt");
|
||||
while (getline(iVersion, line))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user