Comment out the _nonnull calls for 3.2.x, as agreed with tridge.
[metze/old/v3-2-winbind-ndr.git] / source / rpc_parse / parse_prs.c
index c51e1dff4a0b74e7e3383bc16e8a7d97275adc85..3c1b200ebcb020fc47c1842f0f9ca941950f6b0e 100644 (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;