| Index: util/win/module_version.cc
|
| diff --git a/util/win/module_version.cc b/util/win/module_version.cc
|
| index a887b2c788299c925ba673c8277c2ef479ff2be7..bcd98c0e4205251cc96b86d6c9263a023ea2b307 100644
|
| --- a/util/win/module_version.cc
|
| +++ b/util/win/module_version.cc
|
| @@ -35,11 +35,11 @@ bool GetModuleVersionAndType(const base::FilePath& path,
|
| << base::UTF16ToUTF8(path.value());
|
| } else {
|
| VS_FIXEDFILEINFO* fixed_file_info;
|
| - UINT size;
|
| + UINT ffi_size;
|
| if (!VerQueryValue(data.get(),
|
| L"\\",
|
| reinterpret_cast<void**>(&fixed_file_info),
|
| - &size)) {
|
| + &ffi_size)) {
|
| PLOG(WARNING) << "VerQueryValue";
|
| } else {
|
| *vs_fixedfileinfo = *fixed_file_info;
|
|
|