Oops, Windows doesn't offer strndup(). Use g_strndup().

This commit is contained in:
RichardHitt 2013-01-11 16:12:52 -08:00
parent 6c7346cdbe
commit 07b69fd2f8
1 changed files with 2 additions and 2 deletions

View File

@ -211,10 +211,10 @@ url_check_word (const char *word)
case WORD_NICK:
if (strchrs (word[laststart], NICKPRE))
laststart++;
str = strndup (&word[laststart], lastend - laststart);
str = g_strndup (&word[laststart], lastend - laststart);
if (!userlist_find (current_sess, str))
lasttype = 0;
free (str);
g_free (str);
return lasttype;
case WORD_EMAIL:
if (!isalnum (word[laststart]))