mirror of
https://github.com/git/git.git
synced 2026-02-04 15:04:45 +00:00
Silence compiler warning about using an uninitialized variable
Signed-off-by: Sven Strickroth <email@cs-ware.de>
This commit is contained in:
@@ -828,7 +828,7 @@ static int has_valid_directory_prefix(wchar_t *wfilename)
|
||||
int mingw_lstat(const char *file_name, struct stat *buf)
|
||||
{
|
||||
WIN32_FILE_ATTRIBUTE_DATA fdata;
|
||||
WIN32_FIND_DATAW findbuf;
|
||||
WIN32_FIND_DATAW findbuf = { 0 };
|
||||
wchar_t wfilename[MAX_LONG_PATH];
|
||||
int wlen = xutftowcs_long_path(wfilename, file_name);
|
||||
if (wlen < 0)
|
||||
|
||||
Reference in New Issue
Block a user