diff options
-rw-r--r-- | listeners.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/listeners.go b/listeners.go index 5914443..b494910 100644 --- a/listeners.go +++ b/listeners.go @@ -105,6 +105,9 @@ func ListenQUIC(addr string, tlsConf *tls.Config, activeRequests *int64) (quic.E } return &sharedQuicListener{EarlyListener: el, key: lnKey}, nil }) + if err != nil { + return nil, err + } ctx, cancel := context.WithCancel(context.Background()) return &fakeCloseQuicListener{ |