mirror of
https://github.com/samba-team/samba.git
synced 2025-10-26 23:33:15 +03:00
r5037: got rid of all of the TALLOC_DEPRECATED stuff. My apologies for the
large commit. I thought this was worthwhile to get done for consistency.
This commit is contained in:
committed by
Gerald (Jerry) Carter
parent
1d1a9c11ee
commit
ec32b22ed5
@@ -84,7 +84,7 @@ BOOL dcesrv_auth_bind(struct dcesrv_call_state *call)
|
||||
return True;
|
||||
}
|
||||
|
||||
dce_conn->auth_state.auth_info = talloc_p(dce_conn, struct dcerpc_auth);
|
||||
dce_conn->auth_state.auth_info = talloc(dce_conn, struct dcerpc_auth);
|
||||
if (!dce_conn->auth_state.auth_info) {
|
||||
return False;
|
||||
}
|
||||
@@ -214,7 +214,7 @@ BOOL dcesrv_auth_alter(struct dcesrv_call_state *call)
|
||||
return False;
|
||||
}
|
||||
|
||||
dce_conn->auth_state.auth_info = talloc_p(dce_conn, struct dcerpc_auth);
|
||||
dce_conn->auth_state.auth_info = talloc(dce_conn, struct dcerpc_auth);
|
||||
if (!dce_conn->auth_state.auth_info) {
|
||||
return False;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user