Fixed memory leak.

This commit is contained in:
Diogo Sousa 2013-08-02 02:45:54 +01:00
parent 6ec7bfad30
commit 61c9ad08bf
1 changed files with 3 additions and 0 deletions

View File

@ -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);