summary refs log tree commit diff stats
path: root/src/common/url.c
diff options
context:
space:
mode:
authorDiogo Sousa <diogogsousa@gmail.com>2013-08-02 02:45:54 +0100
committerDiogo Sousa <diogogsousa@gmail.com>2013-08-02 02:45:54 +0100
commit61c9ad08bf3cc9c55228ff9dcf191cf0928b823a (patch)
treeea8dda8a2f34474c079ba8dac0a89471171ecf13 /src/common/url.c
parent6ec7bfad3052bd40d5022a38092efcce053bc8cf (diff)
Fixed memory leak.
Diffstat (limited to 'src/common/url.c')
-rw-r--r--src/common/url.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/common/url.c b/src/common/url.c
index 4435da60..1cdfdce7 100644
--- a/src/common/url.c
+++ b/src/common/url.c
@@ -251,7 +251,10 @@ match_nick (const char *word, int *start, int *end)
 	str = g_strndup (&word[*start], *end - *start);
 
 	if (!userlist_find (current_sess, str))
+	{
+		g_free (str);
 		return FALSE;
+	}
 
 	g_free (str);