commit | 9ddaf794a8c1e34b5be767dbb6159dfc037c6560 | [log] [tgz] |
---|---|---|
author | Olivier Houchard <ohouchard@haproxy.com> | Thu Jul 19 16:02:16 2018 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Thu Jul 19 16:23:08 2018 +0200 |
tree | 44f4eed11a55c0c4253a1cf56c1b7a20ca5bf63b | |
parent | 42d55b9b6a0426252d4795a88cc85c9859db79f5 [diff] |
MINOR: tasklet: Set process to NULL. Some consumers expect the process to be NULL when a tasklet it created, so do so.
diff --git a/include/proto/task.h b/include/proto/task.h index dd08392..d1371f3 100644 --- a/include/proto/task.h +++ b/include/proto/task.h
@@ -273,6 +273,7 @@ t->nice = -32768; t->calls = 0; t->state = 0; + t->process = NULL; LIST_INIT(&t->list); }