From: Enrico Tröger Date: Mon, 28 Dec 2009 22:57:47 +0000 (+0100) Subject: Use g_strndup as opposed to strndup in Adblock X-Git-Url: https://spindle.queued.net/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d0a52ac09cca5a59115286cd120e75433f3f98cc;p=midori Use g_strndup as opposed to strndup in Adblock --- diff --git a/extensions/adblock.c b/extensions/adblock.c index cb5162d1..6cb2be37 100644 --- a/extensions/adblock.c +++ b/extensions/adblock.c @@ -833,7 +833,7 @@ adblock_compile_regexp (GHashTable* tbl, { int len = strlen (patt); for (pos = len - SIGNATURE_SIZE; pos >= 0; pos--) { - sig = strndup(patt+pos, SIGNATURE_SIZE); + sig = g_strndup (patt + pos, SIGNATURE_SIZE); if (!g_regex_match_simple ("[\\*]", sig, G_REGEX_UNGREEDY, G_REGEX_MATCH_NOTEMPTY) && !g_hash_table_lookup (keystbl, sig)) {