mirror of
https://github.com/schollz/croc.git
synced 2025-10-11 13:21:00 +02:00
Merge pull request #494 from chavacava/fix-493
fix #493: data race in cli.relay
This commit is contained in:
commit
69f939c0cd
1 changed files with 1 additions and 1 deletions
|
@ -470,7 +470,7 @@ func relay(c *cli.Context) (err error) {
|
|||
continue
|
||||
}
|
||||
go func(portStr string) {
|
||||
err = tcp.Run(debugString, host, portStr, determinePass(c))
|
||||
err := tcp.Run(debugString, host, portStr, determinePass(c))
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue