1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-13 13:18:06 +03:00

fixed a talloc error in the rpc handle desctructor - destructors

should not try to free the ptr they are given
This commit is contained in:
Andrew Tridgell 2008-10-02 21:57:27 -07:00
parent 89a67bb60c
commit bfb3bf6eb0

View File

@ -29,7 +29,6 @@
static int dcesrv_handle_destructor(struct dcesrv_handle *h)
{
DLIST_REMOVE(h->context->handles, h);
talloc_free(h);
return 0;
}