mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
s3:smbd/open: use talloc_get_type_abort() as private_data can't be NULL
metze
This commit is contained in:
parent
e3e56e209f
commit
940f21e5c6
@ -3002,13 +3002,9 @@ void msg_file_was_renamed(struct messaging_context *msg,
|
|||||||
size_t sp_len, bn_len;
|
size_t sp_len, bn_len;
|
||||||
NTSTATUS status;
|
NTSTATUS status;
|
||||||
struct smbd_server_connection *sconn =
|
struct smbd_server_connection *sconn =
|
||||||
talloc_get_type(private_data,
|
talloc_get_type_abort(private_data,
|
||||||
struct smbd_server_connection);
|
struct smbd_server_connection);
|
||||||
|
|
||||||
if (sconn == NULL) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (data->data == NULL
|
if (data->data == NULL
|
||||||
|| data->length < MSG_FILE_RENAMED_MIN_SIZE + 2) {
|
|| data->length < MSG_FILE_RENAMED_MIN_SIZE + 2) {
|
||||||
DEBUG(0, ("msg_file_was_renamed: Got invalid msg len %d\n",
|
DEBUG(0, ("msg_file_was_renamed: Got invalid msg len %d\n",
|
||||||
|
Loading…
Reference in New Issue
Block a user