1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-03 13:47:25 +03:00

libsmb: Add tevent_req_received() to cli_posix_readlink_recv()

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
Volker Lendecke 2022-08-13 15:42:50 +02:00 committed by Jeremy Allison
parent 1025349ae2
commit 7b96948e4d

View File

@ -469,6 +469,7 @@ NTSTATUS cli_posix_readlink_recv(
return status;
}
*target = talloc_move(mem_ctx, &state->converted);
tevent_req_received(req);
return NT_STATUS_OK;
}