From: Jelmer Vernooij Date: Sat, 16 May 2009 18:31:59 +0000 (+0200) Subject: tevent: Define TALLOC_FREE() if it's not defined yet, to allow building X-Git-Tag: tdb-1.1.5~508 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=72b744f38ebb9f9576c05c7bb0a00de26697ec8f;p=thirdparty%2Fsamba.git tevent: Define TALLOC_FREE() if it's not defined yet, to allow building with released versions of talloc. --- diff --git a/lib/tevent/tevent_util.h b/lib/tevent/tevent_util.h index c4d43786e5b..829cbc2f6e6 100644 --- a/lib/tevent/tevent_util.h +++ b/lib/tevent/tevent_util.h @@ -116,3 +116,9 @@ do { \ const char **ev_str_list_add(const char **list, const char *s); int ev_set_blocking(int fd, bool set); size_t ev_str_list_length(const char **list); + +/* Defined here so we can build against older talloc versions that don't + * have this define yet. */ +#ifndef TALLOC_FREE +#define TALLOC_FREE(ctx) do { talloc_free(ctx); ctx=NULL; } while(0) +#endif