From: John (J5) Palmieri Date: Mon, 14 Aug 2006 19:33:20 +0000 (+0000) Subject: * dbus/dbus-dataslot.c (_dbus_data_slot_allocator_alloc): X-Git-Tag: dbus-0.92~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5b5da5297552919578266714fa7abf1e45d1131d;p=platform%2Fupstream%2Fdbus.git * dbus/dbus-dataslot.c (_dbus_data_slot_allocator_alloc): Change _dbus_abort to _dbus_assert_not_reached because _dbus_abort causes compile problems when asserts are turned off Keeping _dbus_warn for printing out the message so even if asserts are turned off the user gets the messages that something is wrong --- diff --git a/ChangeLog b/ChangeLog index a99c2a9..14f89ed 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,14 @@ 2006-08-14 John (J5) Palmieri + * dbus/dbus-dataslot.c (_dbus_data_slot_allocator_alloc): + Change _dbus_abort to _dbus_assert_not_reached because _dbus_abort + causes compile problems when asserts are turned off + Keeping _dbus_warn for printing out the message so even if + asserts are turned off the user gets the messages that something is + wrong + +2006-08-14 John (J5) Palmieri + Patches by Kjartan Maraas * bus/services.c (bus_service_list_queued_owners): diff --git a/dbus/dbus-dataslot.c b/dbus/dbus-dataslot.c index 83e2586..78e94c3 100644 --- a/dbus/dbus-dataslot.c +++ b/dbus/dbus-dataslot.c @@ -81,7 +81,7 @@ _dbus_data_slot_allocator_alloc (DBusDataSlotAllocator *allocator, else if (allocator->lock != mutex) { _dbus_warn ("D-Bus threads were initialized after first using the D-Bus library. If your application does not directly initialize threads or use D-Bus, keep in mind that some library or plugin may have used D-Bus or initialized threads behind your back. You can often fix this problem by calling dbus_init_threads() or dbus_g_threads_init() early in your main() method, before D-Bus is used."); - _dbus_abort (); + _dbus_assert_not_reached ("exiting"); } if (*slot_id_p >= 0)