A function argument is overwritten before its first use SCC-SA4009
Bug risk
Major
1 occurrence in this check
argument ctx is overwritten before first use
 42)
 43
 44// BidirectionalStream represents gRPC bidirectional stream server handler.
 45func BidirectionalStream(ctx context.Context, stream ServerStream, 46	concurrency int,
 47	newData func() interface{},
 48	f func(context.Context, interface{}) (interface{}, error),