1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-25 00:23:52 +03:00

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 commit is contained in:
Jeremy Allison
2007-08-29 01:23:31 +00:00
committed by Gerald (Jerry) Carter
parent 6cf7187e88
commit 343be04643
4 changed files with 51 additions and 5 deletions

View File

@@ -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;