comparison src/proxy.c @ 12440:bfd3aca4647a

[gaim-migrate @ 14747] Fix a warning grim noticed. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Fri, 09 Dec 2005 07:26:29 +0000
parents a88ca6da0b38
children ef1a954512bc
comparison
equal deleted inserted replaced
12439:97167ff86683 12440:bfd3aca4647a
1082 } 1082 }
1083 } 1083 }
1084 1084
1085 /* Read the contents */ 1085 /* Read the contents */
1086 p = g_strrstr(inputline, "Content-Length: "); 1086 p = g_strrstr(inputline, "Content-Length: ");
1087 if(p>0) { 1087 if(p != NULL) {
1088 gchar *tmp; 1088 gchar *tmp;
1089 int len = 0; 1089 int len = 0;
1090 char tmpc; 1090 char tmpc;
1091 p += strlen("Content-Length: "); 1091 p += strlen("Content-Length: ");
1092 tmp = strchr(p, '\r'); 1092 tmp = strchr(p, '\r');