mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-05-02 14:18:04 +02:00
2006-10-24 David Zeuthen <davidz@redhat.com>
* dbus/dbus-threads.c (init_uninitialized_locks): Fix typo so it's
_dbus_assert (thread_init_generation != _dbus_current_generation)
not _dbus_assert (thread_init_generation == _dbus_current_generation)
This commit is contained in:
parent
9bb44a470f
commit
2a78603b0e
2 changed files with 7 additions and 1 deletions
|
|
@ -1,3 +1,9 @@
|
|||
2006-10-24 David Zeuthen <davidz@redhat.com>
|
||||
|
||||
* dbus/dbus-threads.c (init_uninitialized_locks): Fix typo so it's
|
||||
_dbus_assert (thread_init_generation != _dbus_current_generation)
|
||||
not _dbus_assert (thread_init_generation == _dbus_current_generation)
|
||||
|
||||
2006-10-24 Thiago Macieira <thiago@kde.org>
|
||||
|
||||
* dbus/dbus-sysdeps.h:
|
||||
|
|
|
|||
|
|
@ -350,7 +350,7 @@ init_uninitialized_locks (void)
|
|||
{
|
||||
DBusList *link;
|
||||
|
||||
_dbus_assert (thread_init_generation == _dbus_current_generation);
|
||||
_dbus_assert (thread_init_generation != _dbus_current_generation);
|
||||
|
||||
link = uninitialized_mutex_list;
|
||||
while (link != NULL)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue