1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2024-11-16 20:27:44 +00:00

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); matches = g_regex_match (reject, number, 0, NULL);
g_regex_unref (reject);
return !matches; return !matches;
} }