mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2026-05-05 09:58:07 +02:00
2005-08-16 Colin Walters <walters@verbum.org>
* glib/dbus-gobject.c (dbus_set_g_error): Don't lose if the DBusError message is NULL.
This commit is contained in:
parent
f20cee8e12
commit
9746c7a978
2 changed files with 6 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2005-08-16 Colin Walters <walters@verbum.org>
|
||||
|
||||
* glib/dbus-gobject.c (dbus_set_g_error): Don't lose if the
|
||||
DBusError message is NULL.
|
||||
|
||||
2005-08-09 Havoc Pennington <hp@redhat.com>
|
||||
|
||||
* dbus/dbus-errors.c: apply patch from Timo Teras to make a
|
||||
|
|
|
|||
|
|
@ -1494,7 +1494,7 @@ dbus_set_g_error (GError **gerror,
|
|||
g_set_error (gerror, DBUS_GERROR,
|
||||
code,
|
||||
"%s%c%s",
|
||||
error->message,
|
||||
error->message ? error->message : "",
|
||||
'\0',
|
||||
error->name);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue