From e34347302181b1ac03fca91199b84fc32b239684 Mon Sep 17 00:00:00 2001 From: midipix Date: Sun, 28 Apr 2024 15:57:50 +0000 Subject: struct pe_raw_coff_strtbl: coff string tables may contain no data. --- include/perk/perk_structs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/perk/perk_structs.h') 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 */ }; -- cgit v1.2.3