mirror of
https://github.com/go-delve/delve.git
synced 2025-10-30 02:07:58 +08:00
@ -416,7 +416,10 @@ func (bi *BinaryInfo) Close() error {
|
||||
if bi.sepDebugCloser != nil {
|
||||
bi.sepDebugCloser.Close()
|
||||
}
|
||||
return bi.closer.Close()
|
||||
if bi.closer != nil {
|
||||
return bi.closer.Close()
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (bi *BinaryInfo) setLoadError(fmtstr string, args ...interface{}) {
|
||||
|
||||
Reference in New Issue
Block a user