summaryrefslogtreecommitdiff
path: root/src/job.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2011-02-24 03:23:43 +0100
committerLennart Poettering <lennart@poettering.net>2011-02-24 03:23:43 +0100
commita6a9a78d95e9ba302b259f6871433f510c606308 (patch)
tree5c5cc70d266e8163a2ea23258693d7e1ffb067e1 /src/job.c
parentc77bc38d28b2da11dcd219635205e633b5c0cd28 (diff)
job: don't access j->type when j is already freed
Diffstat (limited to 'src/job.c')
-rw-r--r--src/job.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/job.c b/src/job.c
index 7470204710..54c204b650 100644
--- a/src/job.c
+++ b/src/job.c
@@ -502,11 +502,11 @@ int job_finish_and_invalidate(Job *j, JobResult result) {
t = j->type;
job_free(j);
- if (result == JOB_FAILED && j->type == JOB_START)
+ if (result == JOB_FAILED && t == JOB_START)
unit_status_printf(u, "Starting %s " ANSI_HIGHLIGHT_ON "failed" ANSI_HIGHLIGHT_OFF ", see 'systemctl status %s' for details.\n", unit_description(u), u->meta.id);
- else if (result == JOB_TIMEOUT && j->type == JOB_START)
+ else if (result == JOB_TIMEOUT && t == JOB_START)
unit_status_printf(u, "Starting %s " ANSI_HIGHLIGHT_ON "timed out" ANSI_HIGHLIGHT_OFF ".\n", unit_description(u), u->meta.id);
- else if (result == JOB_TIMEOUT && j->type == JOB_STOP)
+ else if (result == JOB_TIMEOUT && t == JOB_STOP)
unit_status_printf(u, "Stopping %s " ANSI_HIGHLIGHT_ON "timed out" ANSI_HIGHLIGHT_OFF ".\n", unit_description(u), u->meta.id);
/* Fail depending jobs on failure */