summaryrefslogtreecommitdiff
path: root/source3/lib/background.c
diff options
context:
space:
mode:
Diffstat (limited to 'source3/lib/background.c')
-rw-r--r--source3/lib/background.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/source3/lib/background.c b/source3/lib/background.c
index aa2a77d59a..6a9178376c 100644
--- a/source3/lib/background.c
+++ b/source3/lib/background.c
@@ -121,9 +121,12 @@ static void background_job_trigger(
struct background_job_state *state = talloc_get_type_abort(
private_data, struct background_job_state);
- if (state->wakeup_req != NULL) {
- tevent_req_set_endtime(state->wakeup_req, state->ev,
- timeval_zero());
+ if (state->wakeup_req == NULL) {
+ return;
+ }
+ if (!tevent_req_set_endtime(state->wakeup_req, state->ev,
+ timeval_zero())) {
+ DEBUG(10, ("tevent_req_set_endtime failed\n"));
}
}