Skip to content

Commit cf312ec

Browse files
committed
HevSocks5Tunnel: Fix use uninitialized variable
Fixes #296
1 parent 5ec6158 commit cf312ec

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/hev-socks5-tunnel.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -690,7 +690,7 @@ hev_socks5_tunnel_run (void)
690690
void
691691
hev_socks5_tunnel_stop (void)
692692
{
693-
int res;
693+
int res = 0;
694694
int fd;
695695

696696
LOG_D ("socks5 tunnel stop");

0 commit comments

Comments
 (0)