fix out-of-bounds read when creating a multiplexed tracer

This commit is contained in:
Marten Seemann 2020-07-20 12:16:48 +07:00
parent 4e4c71c1b9
commit bd2b4e3e71
2 changed files with 62 additions and 50 deletions

View file

@ -17,7 +17,7 @@ func NewMultiplexedTracer(tracers ...Tracer) Tracer {
return nil
}
if len(tracers) == 1 {
return tracers[1]
return tracers[0]
}
return &tracerMultiplexer{tracers}
}