356. [cleanup] isc_task_send no longer requires event->sender to

be non-null.
This commit is contained in:
Brian Wellington
2000-07-27 22:24:54 +00:00
parent 47846b7468
commit 677045ed61
2 changed files with 4 additions and 2 deletions

View File

@@ -1,3 +1,6 @@
356. [cleanup] isc_task_send no longer requires event->sender to
be non-null.
355. [func] Added isc_dir_createunique(), similar to mkdtemp().
354. [doc] Man pages for the dnssec tools are now included in

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: task.c,v 1.67 2000/07/27 09:51:17 tale Exp $ */
/* $Id: task.c,v 1.68 2000/07/27 22:24:54 bwelling Exp $ */
/*
* Principal Author: Bob Halley
@@ -339,7 +339,6 @@ task_send(isc_task_t *task, isc_event_t **eventp) {
REQUIRE(eventp != NULL);
event = *eventp;
REQUIRE(event != NULL);
REQUIRE(event->ev_sender != NULL);
REQUIRE(event->ev_type > 0);
REQUIRE(task->state != task_state_done);