~ubuntu-branches/ubuntu/trusty/systemd/trusty

« back to all changes in this revision

Viewing changes to src/core/dbus-job.c

Tags: upstream-202
ImportĀ upstreamĀ versionĀ 202

Show diffs side-by-side

added added

removed removed

Lines of Context:
116
116
                return bus_default_message_handler(connection, message, INTROSPECTION, INTERFACES_LIST, bps);
117
117
        }
118
118
 
119
 
        if (!dbus_connection_send(connection, reply, NULL))
 
119
        if (!bus_maybe_send_reply(connection, message, reply))
120
120
                return DBUS_HANDLER_RESULT_NEED_MEMORY;
121
121
 
122
122
        return DBUS_HANDLER_RESULT_HANDLED;
185
185
 
186
186
                        free(introspection);
187
187
 
188
 
                        if (!dbus_connection_send(connection, reply, NULL))
 
188
                        if (!bus_maybe_send_reply(connection, message, reply))
189
189
                                goto oom;
190
190
 
191
191
                        return DBUS_HANDLER_RESULT_HANDLED;