mirror of
https://github.com/golang/go
synced 2024-11-19 15:05:00 -07:00
debug/pe: delete unnecessary type conversions
Fixes #7104. LGTM=iant R=golang-dev, iant CC=golang-codereviews https://golang.org/cl/61480049
This commit is contained in:
parent
375b8ea4f3
commit
c507601102
@ -213,15 +213,15 @@ func NewFile(r io.ReaderAt) (*File, error) {
|
||||
s := new(Section)
|
||||
s.SectionHeader = SectionHeader{
|
||||
Name: name,
|
||||
VirtualSize: uint32(sh.VirtualSize),
|
||||
VirtualAddress: uint32(sh.VirtualAddress),
|
||||
Size: uint32(sh.SizeOfRawData),
|
||||
Offset: uint32(sh.PointerToRawData),
|
||||
PointerToRelocations: uint32(sh.PointerToRelocations),
|
||||
PointerToLineNumbers: uint32(sh.PointerToLineNumbers),
|
||||
NumberOfRelocations: uint16(sh.NumberOfRelocations),
|
||||
NumberOfLineNumbers: uint16(sh.NumberOfLineNumbers),
|
||||
Characteristics: uint32(sh.Characteristics),
|
||||
VirtualSize: sh.VirtualSize,
|
||||
VirtualAddress: sh.VirtualAddress,
|
||||
Size: sh.SizeOfRawData,
|
||||
Offset: sh.PointerToRawData,
|
||||
PointerToRelocations: sh.PointerToRelocations,
|
||||
PointerToLineNumbers: sh.PointerToLineNumbers,
|
||||
NumberOfRelocations: sh.NumberOfRelocations,
|
||||
NumberOfLineNumbers: sh.NumberOfLineNumbers,
|
||||
Characteristics: sh.Characteristics,
|
||||
}
|
||||
s.sr = io.NewSectionReader(r, int64(s.SectionHeader.Offset), int64(s.SectionHeader.Size))
|
||||
s.ReaderAt = s.sr
|
||||
|
Loading…
Reference in New Issue
Block a user