The branch, master has been updated via 0f98d539e2edc8f1d57271fb20051189699222a7 (commit) from f60f0077e4f9e5d2dfe89786ca840a8330507a6d (commit)
http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master - Log ----------------------------------------------------------------- commit 0f98d539e2edc8f1d57271fb20051189699222a7 Author: Andrew Tridgell <tri...@samba.org> Date: Mon Aug 24 16:33:00 2009 +1000 note the semantic change in talloc_free from 2.0 ----------------------------------------------------------------------- Summary of changes: lib/talloc/talloc.3.xml | 9 +++++---- lib/talloc/talloc_guide.txt | 8 ++++---- 2 files changed, 9 insertions(+), 8 deletions(-) Changeset truncated at 500 lines: diff --git a/lib/talloc/talloc.3.xml b/lib/talloc/talloc.3.xml index 18c3788..8d9e082 100644 --- a/lib/talloc/talloc.3.xml +++ b/lib/talloc/talloc.3.xml @@ -136,10 +136,11 @@ talloc_free() operates recursively on its children. </para> <para> - As a special case, talloc_free() is refused on pointers that - have more than one parent, as talloc would have no way of knowing - which parent should be removed. To free a pointer that has more than - one parent please use talloc_unlink(). + From the 2.0 version of talloc, as a special case, + talloc_free() is refused on pointers that have more than one + parent, as talloc would have no way of knowing which parent + should be removed. To free a pointer that has more than one + parent please use talloc_unlink(). </para> <para> To help you find problems in your code caused by this behaviour, if diff --git a/lib/talloc/talloc_guide.txt b/lib/talloc/talloc_guide.txt index 3b6467a..01de806 100644 --- a/lib/talloc/talloc_guide.txt +++ b/lib/talloc/talloc_guide.txt @@ -131,10 +131,10 @@ For more control on which parent is removed, see talloc_unlink() talloc_free() operates recursively on its children. -As a special case, talloc_free() is refused on pointers that have more -than one parent, as talloc would have no way of knowing which parent -should be removed. To free a pointer that has more than one parent -please use talloc_unlink(). +From the 2.0 version of talloc, as a special case, talloc_free() is +refused on pointers that have more than one parent, as talloc would +have no way of knowing which parent should be removed. To free a +pointer that has more than one parent please use talloc_unlink(). To help you find problems in your code caused by this behaviour, if you do try and free a pointer with more than one parent then the -- Samba Shared Repository