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);
 }