Daniel Kahn Gillmor <dkg@fifthhorseman.net> writes:
> +
> +notmuch_indexopts_t *
> +notmuch_indexopts_create ()
> +{
> + notmuch_indexopts_t *ret;
> +
> + ret = talloc_zero (NULL, notmuch_indexopts_t);
> +
> + return ret;
> +}
I have the same question about using talloc with a NULL context. It
_looks_ like there is no actual benefit here?
d