From 8c79b4cbc152dd4df11d3916739bc851b6db2e86 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Tue, 19 Sep 2006 22:22:57 +0000 Subject: r18690: Regenerate RPC files after pidl changes. (This used to be commit 87d34305374e867eeac9d75d5d690c6b15570e6e) --- source3/librpc/gen_ndr/srv_eventlog.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'source3/librpc/gen_ndr/srv_eventlog.c') diff --git a/source3/librpc/gen_ndr/srv_eventlog.c b/source3/librpc/gen_ndr/srv_eventlog.c index a4c3bf1cca..4f934af26d 100644 --- a/source3/librpc/gen_ndr/srv_eventlog.c +++ b/source3/librpc/gen_ndr/srv_eventlog.c @@ -131,6 +131,7 @@ static BOOL api_eventlog_CloseEventLog(pipes_struct *p) return False; } + ZERO_STRUCT(r.out); r.out.handle = r.in.handle; r.out.result = _eventlog_CloseEventLog(p, r.in.handle); @@ -232,6 +233,7 @@ static BOOL api_eventlog_GetNumRecords(pipes_struct *p) return False; } + ZERO_STRUCT(r.out); r.out.number = talloc_size(mem_ctx, sizeof(*r.out.number)); if (r.out.number == NULL) { talloc_free(mem_ctx); @@ -388,6 +390,7 @@ static BOOL api_eventlog_OpenEventLogW(pipes_struct *p) return False; } + ZERO_STRUCT(r.out); r.out.handle = talloc_size(mem_ctx, sizeof(*r.out.handle)); if (r.out.handle == NULL) { talloc_free(mem_ctx); @@ -544,6 +547,7 @@ static BOOL api_eventlog_ReadEventLogW(pipes_struct *p) return False; } + ZERO_STRUCT(r.out); r.out.data = talloc_array_size(mem_ctx, sizeof(*r.out.data), r.in.number_of_bytes); if (r.out.data == NULL) { talloc_free(mem_ctx); -- cgit