This is a small change, so I won't changelog it (or backport), but
authorraster <raster@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Wed, 30 May 2012 10:08:41 +0000 (10:08 +0000)
committerraster <raster@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Wed, 30 May 2012 10:08:41 +0000 (10:08 +0000)
make _shutdown() funcs across efl complain and be unhappy if you
shutdown to < 0 shutdowns and not pull init count below 0.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/e_dbus@71548 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/dbus/e_dbus.c

index 68ff810..bd60a39 100644 (file)
@@ -636,7 +636,12 @@ e_dbus_init(void)
 EAPI int
 e_dbus_shutdown(void)
 {
-  if (--_edbus_init_count)
+   if (_edbus_init_count <= 0)
+     {
+        EINA_LOG_ERR("Init count not greater than 0 in shutdown.");
+        return 0;
+     }
+   if (--_edbus_init_count)
     return _edbus_init_count;
 
   e_dbus_object_shutdown();