mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-09-02 23:55:27 +00:00
a function pointer is not a valid event sender, but NULL is
This commit is contained in:
@@ -15,7 +15,7 @@
|
|||||||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* $Id: master.c,v 1.62 2000/08/15 03:33:49 marka Exp $ */
|
/* $Id: master.c,v 1.63 2000/08/24 19:13:13 gson Exp $ */
|
||||||
|
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
|
|
||||||
@@ -1484,7 +1484,7 @@ static isc_result_t
|
|||||||
task_send(loadctx_t *ctx) {
|
task_send(loadctx_t *ctx) {
|
||||||
isc_event_t *event;
|
isc_event_t *event;
|
||||||
|
|
||||||
event = isc_event_allocate(ctx->mctx, task_send,
|
event = isc_event_allocate(ctx->mctx, NULL,
|
||||||
DNS_EVENT_MASTERQUANTUM,
|
DNS_EVENT_MASTERQUANTUM,
|
||||||
load_quantum, ctx, sizeof(*event));
|
load_quantum, ctx, sizeof(*event));
|
||||||
if (event == NULL)
|
if (event == NULL)
|
||||||
|
Reference in New Issue
Block a user