http://bugs.winehq.org/show_bug.cgi?id=31689
--- Comment #6 from olelukoie olelukoie@mail.ru 2012-09-13 13:43:29 CDT --- (In reply to comment #5)
Does it work if you use udisks2_string_from_array to parse that uuid string, or is it returning something even stranger?
I do not understand what you mean. The call to p_dbus_message_iter_get_basic( &variant, &uuid_str ) at line 450 of dbus.c causes an error somewhere inside dbus (in console it writes something like "type 97 is not a basic type") and doesn't return. But wine itself continues to work. If I try to run winecfg and go to Devices tab I see "unable to connect to mount manager" text and no controls on the tab.
To determine that "type 97" (= type 'a') is treated as a container I've added some additional calls to dbus_type_is_*(&variant) before this call and printed the results (* means 'basic', 'container' and 'fixed'). dbus_type_is_basic and dbus_type_is_fixed returned 0 and dbus_type_is_container returned 1.