[evolution-data-server] Bug 735523 - Fix erroneous 'return' after EContactCert check



commit 4199dea458bbbce65843ab9330bde2fee87979ba
Author: David Woodhouse <David Woodhouse intel com>
Date:   Tue Sep 2 16:02:28 2014 +0100

    Bug 735523 - Fix erroneous 'return' after EContactCert check
    
    We need to continue around the loop; we're not done yet. This bug was
    introduced by last-minute refactoring in commit 91d129a5 to make it
    less ugly...

 addressbook/libedata-book/e-book-sqlite.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/addressbook/libedata-book/e-book-sqlite.c b/addressbook/libedata-book/e-book-sqlite.c
index f94ccaa..b649155 100644
--- a/addressbook/libedata-book/e-book-sqlite.c
+++ b/addressbook/libedata-book/e-book-sqlite.c
@@ -4588,7 +4588,7 @@ query_preflight_check (PreflightContext *context,
                                                EBSQL_STATUS_STR (context->status)));
                        }
                        /* Bypass the other checks below which are not appropriate. */
-                       return;
+                       continue;
                }
 
                switch (field_test) {


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]