Just curious - why do you do f.Seek(0, END) twice?
dladlk opened this issue · 1 comments
dladlk commented
I am new in GoLang but anyway not sure if it is done by intention :)
local-log4j-vuln-scanner/scanner/main.go
Line 163 in 4d8a362
hillu commented
I suppose that my intent may have been to seek back to the start of the file, but this is pointless because handleJar
does not use the file pointer at all (it only uses the ReaderAt
interface.) Thank you.