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

Add a missing talloc_move() in tldap_search_recv

This commit is contained in:
Volker Lendecke 2009-06-19 17:36:38 +02:00
parent 8d1b81926d
commit 0524d24fb2

View File

@ -1195,7 +1195,7 @@ int tldap_search_recv(struct tevent_req *req, TALLOC_CTX *mem_ctx,
}
}
*pmsg = state->result;
*pmsg = talloc_move(mem_ctx, &state->result);
return TLDAP_SUCCESS;
}