From: Jose Dapena Paz Date: Wed, 1 Aug 2007 18:01:10 +0000 (+0000) Subject: * src/modest-text-utils.c: X-Git-Tag: git_migration_finished~2659 X-Git-Url: http://git.maemo.org/git/?p=modest;a=commitdiff_plain;h=addd1287234fa35a521c56e6d6472de35739b3a2;ds=sidebyside * src/modest-text-utils.c: * (modest_text_utils_validate_email_address): a domain part that finishes with a dot (for example "a@b.") is not valid (fixes NB#63204). pmo-trunk-r2899 --- diff --git a/src/modest-text-utils.c b/src/modest-text-utils.c index f01e706..3c63385 100644 --- a/src/modest-text-utils.c +++ b/src/modest-text-utils.c @@ -1145,7 +1145,7 @@ modest_text_utils_validate_email_address (const gchar *email_address, const gcha return FALSE; do { if (*c == '.') { - if (c == domain || *(c - 1) == '.') + if (c == domain || *(c - 1) == '.' || *(c + 1) == '\0') return FALSE; count++; }