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:
Ralf Habacker 2012-02-20 13:06:19 +01:00 committed by Simon McVittie
parent 1eba10ad37
commit e90b160011

View file

@ -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);