Skip to content
/ cecil Public
forked from jbevain/cecil

Commit

Permalink
EncLog rows are 8 bytes long. Fixes #199
Browse files Browse the repository at this point in the history
  • Loading branch information
jbevain committed Jan 21, 2015
1 parent d3cd207 commit b7d1a25
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Mono.Cecil.PE/ImageReader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -596,6 +596,8 @@ void ComputeTableInformations ()
+ GetTableIndexSize (Table.Field); // Field
break;
case Table.EncLog:
size = 8;
break;
case Table.EncMap:
size = 4;
break;
Expand Down

0 comments on commit b7d1a25

Please sign in to comment.