From: Michael Zucci Date: Thu, 27 Sep 2001 23:34:33 +0000 (+0000) Subject: Minor style change to operation_registered. X-Git-Tag: upstream/3.7.4~10640 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7d41271a8177f500707cfe6aa6970b5af5723fde;p=platform%2Fupstream%2Fevolution-data-server.git Minor style change to operation_registered. --- diff --git a/camel/camel-operation.c b/camel/camel-operation.c index 95d8fa0..1358cc1 100644 --- a/camel/camel-operation.c +++ b/camel/camel-operation.c @@ -105,12 +105,10 @@ CamelOperation *camel_operation_registered(void) CamelOperation *cc = NULL; CAMEL_ACTIVE_LOCK(); - if (operation_active != NULL) { - cc = g_hash_table_lookup(operation_active, (void *)pthread_self()); - if (cc) { - g_assert(cc->refcount > 0); - cc->refcount++; - } + if (operation_active != NULL + && (cc = g_hash_table_lookup(operation_active, (void *)pthread_self()))) { + g_assert(cc->refcount > 0); + cc->refcount++; } CAMEL_ACTIVE_UNLOCK();