~ubuntu-branches/debian/experimental/glib2.0/experimental

« back to all changes in this revision

Viewing changes to gio/gdbusmethodinvocation.c

  • Committer: Package Import Robot
  • Author(s): Iain Lane
  • Date: 2015-08-26 17:25:52 UTC
  • mfrom: (1.67.13)
  • Revision ID: package-import@ubuntu.com-20150826172552-c3rs5tllwng5cr46
Tags: 2.45.6-1
* New upstream releases 2.45.5 and 2.45.6
  + GNetworkMonitor now provides information about metered networks
  + g_mem_set_vtable has been deprecated; it has not been working for quite
    a while. The recommendation is to use valgrind, or replace malloc
    itself.
* debian/patches/0001-GOptionContext-Don-t-crash-without-main-group.patch:
  Drop, applied upstream.
* debian/libglib2.0-0.symbols: Add new symbols for this release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
505
505
  error = NULL;
506
506
  if (!g_dbus_connection_send_message (g_dbus_method_invocation_get_connection (invocation), reply, G_DBUS_SEND_MESSAGE_FLAGS_NONE, NULL, &error))
507
507
    {
508
 
      g_warning ("Error sending message: %s", error->message);
 
508
      if (!g_error_matches (error, G_IO_ERROR, G_IO_ERROR_CLOSED))
 
509
        g_warning ("Error sending message: %s", error->message);
509
510
      g_error_free (error);
510
511
    }
511
512
  g_object_unref (reply);