summaryrefslogtreecommitdiff
path: root/source3/librpc/gen_ndr/srv_eventlog.c
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2007-01-16 17:48:59 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:17:11 -0500
commite2e7ad91a9aa3b8a1270e1148550fee9e3fedc79 (patch)
tree0c77df2e47a690b2e555c379fd387934128f68f7 /source3/librpc/gen_ndr/srv_eventlog.c
parentdef7b0bca194502832192270322c6232622ee48e (diff)
downloadsamba-e2e7ad91a9aa3b8a1270e1148550fee9e3fedc79.tar.gz
samba-e2e7ad91a9aa3b8a1270e1148550fee9e3fedc79.tar.bz2
samba-e2e7ad91a9aa3b8a1270e1148550fee9e3fedc79.zip
r20837: Use real type name, to fix compilation with -WC++-compat
(This used to be commit 840485686d2b3765bd01fbe442f712803d1f4c0f)
Diffstat (limited to 'source3/librpc/gen_ndr/srv_eventlog.c')
-rw-r--r--source3/librpc/gen_ndr/srv_eventlog.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source3/librpc/gen_ndr/srv_eventlog.c b/source3/librpc/gen_ndr/srv_eventlog.c
index 466d523262..f4746ef66e 100644
--- a/source3/librpc/gen_ndr/srv_eventlog.c
+++ b/source3/librpc/gen_ndr/srv_eventlog.c
@@ -295,7 +295,7 @@ static BOOL api_eventlog_GetNumRecords(pipes_struct *p)
NDR_PRINT_IN_DEBUG(eventlog_GetNumRecords, &r);
ZERO_STRUCT(r.out);
- r.out.number = talloc_zero_size(mem_ctx, sizeof(*r.out.number));
+ r.out.number = talloc_zero(mem_ctx, uint32_t);
if (r.out.number == NULL) {
talloc_free(mem_ctx);
return False;
@@ -494,7 +494,7 @@ static BOOL api_eventlog_OpenEventLogW(pipes_struct *p)
NDR_PRINT_IN_DEBUG(eventlog_OpenEventLogW, &r);
ZERO_STRUCT(r.out);
- r.out.handle = talloc_zero_size(mem_ctx, sizeof(*r.out.handle));
+ r.out.handle = talloc_zero(mem_ctx, struct policy_handle);
if (r.out.handle == NULL) {
talloc_free(mem_ctx);
return False;
@@ -693,19 +693,19 @@ static BOOL api_eventlog_ReadEventLogW(pipes_struct *p)
NDR_PRINT_IN_DEBUG(eventlog_ReadEventLogW, &r);
ZERO_STRUCT(r.out);
- r.out.data = talloc_zero_size(mem_ctx, sizeof(*r.out.data) * r.in.number_of_bytes);
+ r.out.data = talloc_zero_array(mem_ctx, uint8_t, r.in.number_of_bytes);
if (r.out.data == NULL) {
talloc_free(mem_ctx);
return False;
}
- r.out.sent_size = talloc_zero_size(mem_ctx, sizeof(*r.out.sent_size));
+ r.out.sent_size = talloc_zero(mem_ctx, uint32_t);
if (r.out.sent_size == NULL) {
talloc_free(mem_ctx);
return False;
}
- r.out.real_size = talloc_zero_size(mem_ctx, sizeof(*r.out.real_size));
+ r.out.real_size = talloc_zero(mem_ctx, uint32_t);
if (r.out.real_size == NULL) {
talloc_free(mem_ctx);
return False;