From addd1287234fa35a521c56e6d6472de35739b3a2 Mon Sep 17 00:00:00 2001 From: Jose Dapena Paz Date: Wed, 1 Aug 2007 18:01:10 +0000 Subject: [PATCH 1/1] * 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 --- src/modest-text-utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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++; } -- 1.7.9.5