summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2024-04-28 16:00:11 +0000
committermidipix <writeonce@midipix.org>2024-04-28 16:00:11 +0000
commitc0a8ed42c4f477c1e93dad35622e272fd7745c34 (patch)
treeb7ac28355f4573d6fb2bec58bc66e046c057b5c5
parent96d7d6214a391d0bedbf83c019d0886b23b592d0 (diff)
downloadmdso-c0a8ed42c4f477c1e93dad35622e272fd7745c34.tar.bz2
mdso-c0a8ed42c4f477c1e93dad35622e272fd7745c34.tar.xz
struct pe_raw_coff_strtbl: coff string tables may contain no data.
-rw-r--r--src/internal/perk/perk_structs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/internal/perk/perk_structs.h b/src/internal/perk/perk_structs.h
index b1823b4..9ffb480 100644
--- a/src/internal/perk/perk_structs.h
+++ b/src/internal/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 */
};