summaryrefslogtreecommitdiff
path: root/source3/rpc_parse/parse_prs.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2007-08-29 01:23:31 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:30:18 -0500
commit7b24eb65a0c4189796fc74319a400c6bfb85fdb7 (patch)
treebe650dfaec20ec99bbf6a9335bd218c838f3f41a /source3/rpc_parse/parse_prs.c
parent6227abc043c342e70a923da15a12668ca0c87020 (diff)
downloadsamba-7b24eb65a0c4189796fc74319a400c6bfb85fdb7.tar.gz
samba-7b24eb65a0c4189796fc74319a400c6bfb85fdb7.tar.bz2
samba-7b24eb65a0c4189796fc74319a400c6bfb85fdb7.zip
r24759: Comment out the _nonnull calls for 3.2.x, as agreed with tridge.
Leaving the commented out code for now, in case I need to re-test some stuff. Jeremy (This used to be commit 343be0464342aac14a9592fd73a71b7589ba34d5)
Diffstat (limited to 'source3/rpc_parse/parse_prs.c')
-rw-r--r--source3/rpc_parse/parse_prs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpc_parse/parse_prs.c b/source3/rpc_parse/parse_prs.c
index c51e1dff4a..3c1b200ebc 100644
--- a/source3/rpc_parse/parse_prs.c
+++ b/source3/rpc_parse/parse_prs.c
@@ -161,7 +161,7 @@ char *prs_alloc_mem(prs_struct *ps, size_t size, unsigned int count)
if (size && count) {
/* We can't call the type-safe version here. */
- ret = (char *)_talloc_zero_array_zeronull(ps->mem_ctx, size, count,
+ ret = (char *)_talloc_zero_array(ps->mem_ctx, size, count,
"parse_prs");
}
return ret;