Document TALLOC_FREE()
authorVolker Lendecke <vl@samba.org>
Sat, 21 Mar 2009 19:02:50 +0000 (20:02 +0100)
committerVolker Lendecke <vl@samba.org>
Sat, 21 Mar 2009 19:04:17 +0000 (20:04 +0100)
lib/talloc/talloc.h

index 01e7326ccc602edd6f754a04134d5f67d629ba33..d103d6f4f200d4a3c307fca84c37b1dc85a48b91 100644 (file)
@@ -633,6 +633,16 @@ typedef void TALLOC_CTX;
 #define talloc_append_string(c, s, a) (s?talloc_strdup_append(s,a):talloc_strdup(c, a))
 #endif
 
+/**
+ * \def TALLOC_FREE(ctx)
+ * \brief talloc_free a chunk and NULL out the pointer
+ * \param ctx The chunk to be freed
+ * \ingroup talloc_basic
+ *
+ * TALLOC_FREE() frees a pointer and sets it to NULL. Use this if you want
+ * immediate feedback (i.e. crash) if you use a pointer after having free'ed
+ * it.
+ */
 #define TALLOC_FREE(ctx) do { talloc_free(ctx); ctx=NULL; } while(0)
 
 /**