Changeset 40047 in vbox for trunk/src/VBox/Additions/x11/VBoxClient/hostversion.cpp
- Timestamp:
- Feb 9, 2012 9:41:51 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 76173
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/x11/VBoxClient/hostversion.cpp
r38725 r40047 47 47 # ifdef VBOX_WITH_DBUS 48 48 DBusConnection *conn; 49 DBusMessage* msg ;49 DBusMessage* msg = NULL; 50 50 conn = dbus_bus_get (DBUS_BUS_SESSON, NULL); 51 51 if (conn == NULL) … … 65 65 rc = VERR_INVALID_HANDLE; 66 66 } 67 else68 rc = VINF_SUCCESS;67 else 68 rc = VINF_SUCCESS; 69 69 } 70 70 if (RT_SUCCESS(rc)) … … 116 116 } 117 117 if (dbus_error_is_set(&err)) 118 dbus_error_free(&err);118 dbus_error_free(&err); 119 119 } 120 120 if (msg != NULL)
Note:
See TracChangeset
for help on using the changeset viewer.