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

Unified Diff: syzygy/pe/pe_file_parser.cc

Issue 2771503005: Add support for the Win10 SDK to the PE reader (Closed)
Patch Set: Created 3 years, 9 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | syzygy/pe/pe_structs.h » ('j') | syzygy/pe/pe_structs.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: syzygy/pe/pe_file_parser.cc
diff --git a/syzygy/pe/pe_file_parser.cc b/syzygy/pe/pe_file_parser.cc
index 8550f99c5d95896791d8b665fa02df17d9b799d8..74515d818f55f8c4d080c43b98b149bfc7f7e414 100644
--- a/syzygy/pe/pe_file_parser.cc
+++ b/syzygy/pe/pe_file_parser.cc
@@ -1163,7 +1163,9 @@ BlockGraph::Block* PEFileParser::ParseLoadConfigDir(
kLoadConfigDirectorySizeUnknown;
switch (*load_config_len.ptr()) {
case kLoadConfigDirectorySize80:
- case kLoadConfigDirectorySize81:
+ case kLoadConfigDirectorySizeNoCodeIntegrity:
+ case kLoadConfigDirectorySizeNoCFG:
chrisha 2017/03/23 20:53:32 Should these be 100NoCFG and 100NoCodeIntegrity?
Sébastien Marchand 2017/03/23 20:56:43 It depends, 100NoCFG will also mean 81, so I've de
+ case kLoadConfigDirectorySize100:
load_config_version =
static_cast<LoadConfigDirectoryVersion>(*load_config_len.ptr());
break;
« no previous file with comments | « no previous file | syzygy/pe/pe_structs.h » ('j') | syzygy/pe/pe_structs.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698