diff options
author | midipix <writeonce@midipix.org> | 2024-04-28 15:57:50 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2024-04-28 15:57:50 +0000 |
commit | e34347302181b1ac03fca91199b84fc32b239684 (patch) | |
tree | 8497e6f483140e5541ee63936b04c3016a88864e /include | |
parent | 78dcfd86c8c7d917cd81b0b042e308e73c274888 (diff) | |
download | perk-e34347302181b1ac03fca91199b84fc32b239684.tar.bz2 perk-e34347302181b1ac03fca91199b84fc32b239684.tar.xz |
struct pe_raw_coff_strtbl: coff string tables may contain no data.
Diffstat (limited to 'include')
-rw-r--r-- | include/perk/perk_structs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/perk/perk_structs.h b/include/perk/perk_structs.h index b1823b4..9ffb480 100644 --- a/include/perk/perk_structs.h +++ b/include/perk/perk_structs.h @@ -332,7 +332,7 @@ struct pe_raw_coff_symbol_name { struct pe_raw_coff_strtbl { unsigned char cst_size [0x04]; /* 0x00 */ - unsigned char cst_data [0x01]; /* 0x04 */ + unsigned char cst_data []; /* 0x04 */ }; |