From 434533310fdab81f0fa3c7c96448c5b42a5737eb Mon Sep 17 00:00:00 2001 From: Carlos Garcia Campos Date: Sun, 27 Jul 2008 16:01:18 +0000 Subject: Create the hash table also when profiling service is enabled for all 2008-07-27 Carlos Garcia Campos * libdocument/ev-debug.c: (profile_init): Create the hash table also when profiling service is enabled for all sections. svn path=/trunk/; revision=3087 --- (limited to 'libdocument/ev-debug.c') diff --git a/libdocument/ev-debug.c b/libdocument/ev-debug.c index 911521b..48cbf5d 100644 --- a/libdocument/ev-debug.c +++ b/libdocument/ev-debug.c @@ -65,11 +65,10 @@ profile_init () if (g_getenv ("EV_PROFILE") != NULL) { /* enable all profiling */ ev_profile = ~EV_NO_PROFILE; - return; - } - - if (g_getenv ("EV_PROFILE_JOBS") != NULL) - ev_profile |= EV_PROFILE_JOBS; + } else { + if (g_getenv ("EV_PROFILE_JOBS") != NULL) + ev_profile |= EV_PROFILE_JOBS; + } if (ev_profile) { timers = g_hash_table_new_full (g_str_hash, -- cgit v0.9.1