0
0
Fork 0
mirror of https://github.com/schollz/croc.git synced 2025-10-11 13:21:00 +02:00

fix #493: data race in cli.relay

This commit is contained in:
chavacava 2022-07-17 10:40:49 +02:00 committed by GitHub
parent 1851327df7
commit 40ac320261
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -470,7 +470,7 @@ func relay(c *cli.Context) (err error) {
continue continue
} }
go func(portStr string) { go func(portStr string) {
err = tcp.Run(debugString, host, portStr, determinePass(c)) err := tcp.Run(debugString, host, portStr, determinePass(c))
if err != nil { if err != nil {
panic(err) panic(err)
} }