From 035abb79939ae30a5192821d7fc87023158683aa Mon Sep 17 00:00:00 2001 From: Alex Ustyantsev Date: Tue, 30 Mar 2021 13:28:12 +0300 Subject: [PATCH] only read required field for BOF record --- bof.go | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/bof.go b/bof.go index ecb1f1e..92f7a19 100644 --- a/bof.go +++ b/bof.go @@ -21,10 +21,6 @@ func (b *bof) utf16String(buf io.ReadSeeker, count uint32) string { } type biffHeader struct { - Ver uint16 - Type uint16 - Id_make uint16 - Year uint16 - Flags uint32 - Min_ver uint32 + Ver uint16 + Type uint16 }