1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00

talloc: fix doxygen of talloc_move

talloc_move cannot fail.

Signed-off-by: Uri Simchoni <uri@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>

Autobuild-User(master): Jeremy Allison <jra@samba.org>
Autobuild-Date(master): Fri Mar 10 07:30:40 CET 2017 on sn-devel-144
This commit is contained in:
Uri Simchoni 2017-03-09 14:40:54 +02:00 committed by Jeremy Allison
parent 59b580f6c7
commit 2772fa4fbf

View File

@ -407,10 +407,11 @@ const char *talloc_set_name(const void *ptr, const char *fmt, ...) PRINTF_ATTRIB
*
* @param[in] new_ctx The new parent context.
*
* @param[in] pptr Pointer to the talloc chunk to move.
* @param[in] pptr Pointer to a pointer to the talloc chunk to move.
*
* @return The pointer to the talloc chunk that moved.
* It does not have any failure modes.
*
* @return The pointer of the talloc chunk it has been moved to,
* NULL on error.
*/
void *talloc_move(const void *new_ctx, void **pptr);
#else