0
0
mirror of https://github.com/darkk/redsocks.git synced 2025-08-26 11:45:30 +00:00

Fixed bug in redsocks_connect_relay (client was always dropped)

This commit is contained in:
darkk 2007-09-21 15:17:11 +00:00 committed by Leonid Evdokimov
parent d6c27de5f1
commit f73ed3442e

View File

@ -377,6 +377,8 @@ void redsocks_connect_relay(redsocks_client *client)
goto fail;
}
return; // OK
fail:
redsocks_drop_client(client);
}