zhengshi1998

Results 4 comments of zhengshi1998

Is it possible that in `go2rtc/internal/app/log.go`, the `MemoryLog` is initialized to be a buffer for logging and used by multiple goroutines without synchronization?

I see, thanks for your reply. Should I see it as a "benign race" (a race that has no harm on the program behavior) ?

Maybe this is a buffer overflow error? Suppose at some time, `b.w = cap(b.chunks) - 1` and there are two goroutines accessing the Write method concurrently. Both goroutine pass the...

Thank you for your response!