golang / mock

GoMock is a mocking framework for the Go programming language.
Apache License 2.0
9.26k stars 608 forks source link

fix: file not closed if Write returns an error #707

Closed alexandear closed 11 months ago

alexandear commented 1 year ago

This PR fixes a situation when f.Close() is not deferred when dst.Write returns err. This is because log.Fatalf internally calls os.Exit.