diff options
Diffstat (limited to 'mail/em-account-editor.c')
-rw-r--r-- | mail/em-account-editor.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/em-account-editor.c b/mail/em-account-editor.c index 88912a4517..e3e9613e2e 100644 --- a/mail/em-account-editor.c +++ b/mail/em-account-editor.c @@ -3153,7 +3153,7 @@ emae_check_complete (EConfig *ec, const gchar *pageid, gpointer data) emae->priv->management_set = 1; tmp = e_account_get_string (account, E_ACCOUNT_ID_ADDRESS); len = strlen (tmp); - template = alloca (len + 14); + template = g_alloca (len + 14); strcpy (template, tmp); while (e_get_account_by_name (template)) sprintf (template + len, " (%d)", i++); |