From: Ralf Habacker Date: Mon, 13 Dec 2010 21:17:12 +0000 (+0100) Subject: Windows fix: In install path scope case add hashed install path to mutex/shm name. X-Git-Tag: dbus-1.4.1~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3bacc897c70f5585d76df5429c51fa56bb3196cf;p=thirdparty%2Fdbus.git Windows fix: In install path scope case add hashed install path to mutex/shm name. --- diff --git a/dbus/dbus-sysdeps-win.c b/dbus/dbus-sysdeps-win.c index 18aff926b..bacfcb2ad 100644 --- a/dbus/dbus-sysdeps-win.c +++ b/dbus/dbus-sysdeps-win.c @@ -2588,6 +2588,9 @@ _dbus_get_address_string (DBusString *out, const char *basestring, const char *s _dbus_string_free(out); return FALSE; } + _dbus_string_append(out,"-"); + _dbus_string_append(out,_dbus_string_get_const_data(&temp)); + _dbus_string_free(&temp); } else if (strcmp(scope,"*user") == 0) {