mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
parent
65f7a9d084
commit
014a596f42
@ -1642,8 +1642,8 @@ static struct byte_range_lock *brl_get_locks_internal(TALLOC_CTX *mem_ctx,
|
||||
talloc_set_destructor(br_lck, byte_range_lock_destructor);
|
||||
|
||||
br_lck->num_locks = data.dsize / sizeof(struct lock_struct);
|
||||
if (!(br_lck->lock_data = SMB_MALLOC_ARRAY(
|
||||
struct lock_struct, br_lck->num_locks))) {
|
||||
br_lck->lock_data = SMB_MALLOC_ARRAY(struct lock_struct, br_lck->num_locks);
|
||||
if ((br_lck->num_locks != 0) && (br_lck->lock_data == NULL)) {
|
||||
DEBUG(0, ("malloc failed\n"));
|
||||
TALLOC_FREE(br_lck);
|
||||
return NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user