1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

r23759: Fix make test -- sorry

(This used to be commit cbbc70604e)
This commit is contained in:
Volker Lendecke 2007-07-09 08:45:14 +00:00 committed by Gerald (Jerry) Carter
parent 65f7a9d084
commit 014a596f42

View File

@ -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;