application: Fix double free

The double free was introduced in 46e4422.
This fixes #225
This commit is contained in:
Evangelos Ribeiro Tzaras
2021-02-16 02:59:24 +01:00
parent 82275c7fea
commit d75a08b9b7

View File

@@ -188,8 +188,6 @@ check_dial_number (const gchar *number)
matches = g_regex_match (reject, number, 0, NULL);
g_regex_unref (reject);
return !matches;
}