Closed anfernee closed 4 years ago
https://github.com/google/seesaw/blob/34716af0775ecb1fad239a726390d63d6b0742dd/engine/core.go#L311-L344
this will simply explode because it keeps calling L331 without Close() which gets deferred and never gets executed.
Close()
The ncc.Dial() and ncc.Close() pattern is odd.
ncc.Dial()
ncc.Close()
https://github.com/google/seesaw/blob/34716af0775ecb1fad239a726390d63d6b0742dd/engine/core.go#L311-L344
this will simply explode because it keeps calling L331 without
Close()
which gets deferred and never gets executed.The
ncc.Dial()
andncc.Close()
pattern is odd.