Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(368)

Side by Side Diff: util/win/module_version.cc

Issue 1467993003: win: Don't warn when no VERSIONINFO resource is present in a module (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « util/win/module_version.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Crashpad Authors. All rights reserved. 1 // Copyright 2015 The Crashpad Authors. All rights reserved.
2 // 2 //
3 // Licensed under the Apache License, Version 2.0 (the "License"); 3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License. 4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at 5 // You may obtain a copy of the License at
6 // 6 //
7 // http://www.apache.org/licenses/LICENSE-2.0 7 // http://www.apache.org/licenses/LICENSE-2.0
8 // 8 //
9 // Unless required by applicable law or agreed to in writing, software 9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS, 10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and 12 // See the License for the specific language governing permissions and
13 // limitations under the License. 13 // limitations under the License.
14 14
15 #include "util/win/module_version.h" 15 #include "util/win/module_version.h"
16 16
17 #include <windows.h> 17 #include <windows.h>
18 18
19 #include "base/logging.h" 19 #include "base/logging.h"
20 #include "base/memory/scoped_ptr.h" 20 #include "base/memory/scoped_ptr.h"
21 #include "base/strings/utf_string_conversions.h" 21 #include "base/strings/utf_string_conversions.h"
22 22
23 namespace crashpad { 23 namespace crashpad {
24 24
25 bool GetModuleVersionAndType(const base::FilePath& path, 25 bool GetModuleVersionAndType(const base::FilePath& path,
26 VS_FIXEDFILEINFO* vs_fixedfileinfo) { 26 VS_FIXEDFILEINFO* vs_fixedfileinfo) {
27 DWORD size = GetFileVersionInfoSize(path.value().c_str(), nullptr); 27 DWORD size = GetFileVersionInfoSize(path.value().c_str(), nullptr);
28 if (!size) { 28 if (!size) {
29 PLOG(WARNING) << "GetFileVersionInfoSize: " 29 PLOG_IF(WARNING, GetLastError() != ERROR_RESOURCE_TYPE_NOT_FOUND)
30 << base::UTF16ToUTF8(path.value()); 30 << "GetFileVersionInfoSize: " << base::UTF16ToUTF8(path.value());
31 } else { 31 return false;
32 scoped_ptr<uint8_t[]> data(new uint8_t[size]);
33 if (!GetFileVersionInfo(path.value().c_str(), 0, size, data.get())) {
34 PLOG(WARNING) << "GetFileVersionInfo: "
35 << base::UTF16ToUTF8(path.value());
36 } else {
37 VS_FIXEDFILEINFO* fixed_file_info;
38 UINT ffi_size;
39 if (!VerQueryValue(data.get(),
40 L"\\",
41 reinterpret_cast<void**>(&fixed_file_info),
42 &ffi_size)) {
43 PLOG(WARNING) << "VerQueryValue";
44 } else {
45 *vs_fixedfileinfo = *fixed_file_info;
46 vs_fixedfileinfo->dwFileFlags &= vs_fixedfileinfo->dwFileFlagsMask;
47 return true;
48 }
49 }
50 } 32 }
51 33
52 return false; 34 scoped_ptr<uint8_t[]> data(new uint8_t[size]);
35 if (!GetFileVersionInfo(path.value().c_str(), 0, size, data.get())) {
36 PLOG(WARNING) << "GetFileVersionInfo: "
37 << base::UTF16ToUTF8(path.value());
38 return false;
39 }
40
41 VS_FIXEDFILEINFO* fixed_file_info;
42 UINT ffi_size;
43 if (!VerQueryValue(data.get(),
44 L"\\",
45 reinterpret_cast<void**>(&fixed_file_info),
46 &ffi_size)) {
47 PLOG(WARNING) << "VerQueryValue";
48 return false;
49 }
50
51 *vs_fixedfileinfo = *fixed_file_info;
52 vs_fixedfileinfo->dwFileFlags &= vs_fixedfileinfo->dwFileFlagsMask;
53 return true;
53 } 54 }
54 55
55 } // namespace crashpad 56 } // namespace crashpad
OLDNEW
« no previous file with comments | « util/win/module_version.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698