mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-05-05 01:48:00 +02:00
Fixed runtime error caused by using uninitialized variable detected with msvc build.
Bug: https://bugs.freedesktop.org/show_bug.cgi?id=46335 Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
This commit is contained in:
parent
1eba10ad37
commit
e90b160011
1 changed files with 1 additions and 1 deletions
|
|
@ -258,7 +258,7 @@ refresh_watches_for_fd (DBusLoop *loop,
|
|||
{
|
||||
DBusList *link;
|
||||
unsigned int flags = 0;
|
||||
dbus_bool_t interested;
|
||||
dbus_bool_t interested = FALSE;
|
||||
|
||||
_dbus_assert (fd != -1);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue