1
0
mirror of https://github.com/rofl0r/proxychains-ng synced 2026-05-15 01:52:34 +08:00

check snprintf return value for error

This commit is contained in:
rofl0r
2016-12-20 22:18:21 +00:00
Unverified
parent 6ae959e051
commit bf6eeff75a
+1 -1
View File
@@ -244,7 +244,7 @@ static int tunnel_to(int sock, ip_type ip, unsigned short port, proxy_type pt, c
ulen ? "Proxy-Authorization: Basic " : dst,
dst, ulen ? "\r\n" : dst);
if(len != send(sock, buff, len, 0))
if(len < 0 || len != send(sock, buff, len, 0))
goto err;
len = 0;