summary refs log tree commit diff stats
path: root/src/common/url.c
diff options
context:
space:
mode:
authorRichardHitt <rbh00@netcom.com>2013-03-31 12:14:52 -0700
committerRichardHitt <rbh00@netcom.com>2013-03-31 12:14:52 -0700
commit3fee94473beb4b95d3ea1f37758014ab6bc5af47 (patch)
tree26a4a5a187d45c65b1fce9a68d0fc4859251f0df /src/common/url.c
parent503968c1fd0817a9e562af6615c8d938124db961 (diff)
Don't clobber data, just adjust url endpoint
Diffstat (limited to 'src/common/url.c')
-rw-r--r--src/common/url.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/url.c b/src/common/url.c
index 717e1906..9b4e30ad 100644
--- a/src/common/url.c
+++ b/src/common/url.c
@@ -289,7 +289,7 @@ url_check_line (char *buf, int len)
 
 		g_match_info_fetch_pos(gmi, 0, &start, &end);
 		while (end > start && (po[end - 1] == '\r' || po[end - 1] == '\n'))
-			po[--end] = 0;
+			end--;
 		if (g_strstr_len (po + start, end - start, "://"))
 			url_add(po + start, end - start);
 		g_match_info_next(gmi, NULL);