mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
fix out-of-bounds read when creating a multiplexed tracer
This commit is contained in:
parent
4e4c71c1b9
commit
bd2b4e3e71
2 changed files with 62 additions and 50 deletions
|
@ -17,7 +17,7 @@ func NewMultiplexedTracer(tracers ...Tracer) Tracer {
|
|||
return nil
|
||||
}
|
||||
if len(tracers) == 1 {
|
||||
return tracers[1]
|
||||
return tracers[0]
|
||||
}
|
||||
return &tracerMultiplexer{tracers}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue