From: <rl...@us...> - 2006-05-09 01:35:47
|
Revision: 16163 Author: rlaager Date: 2006-05-08 18:35:43 -0700 (Mon, 08 May 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16163&view=rev Log Message: ----------- A patch in SF Bug #1461450 from gonufer. This should make SOCKS-5 proxies work again. It looked correct to me, but someone who really knows the proxy code might want to double-check. Modified Paths: -------------- trunk/src/proxy.c Modified: trunk/src/proxy.c =================================================================== --- trunk/src/proxy.c 2006-05-09 01:22:33 UTC (rev 16162) +++ trunk/src/proxy.c 2006-05-09 01:35:43 UTC (rev 16163) @@ -1737,7 +1737,7 @@ { struct PHB *phb = data; int hlen = strlen(phb->host); - phb->write_buf_len = 5 + hlen + 1; + phb->write_buf_len = 5 + hlen + 2; phb->write_buffer = g_malloc(phb->write_buf_len); phb->written_len = 0; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |