diff options
author | Volker Lendecke <vlendec@samba.org> | 2005-05-07 06:59:00 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:56:49 -0500 |
commit | 55739e9f860a2a8f27a99fc2f79905a8ed143fee (patch) | |
tree | 814befcf2b106109cc180b6dbd475291da3ecd18 /source3/torture/locktest2.c | |
parent | bce78238fb84c201a9bdc6ee88a6ced38ee26768 (diff) | |
download | samba-55739e9f860a2a8f27a99fc2f79905a8ed143fee.tar.gz |
r6640: Attempt to fix 'make everything' with the paranoid malloc checker.
Volker
(This used to be commit 3db2799822da3711b47b60ba13daa07205ced45f)
Diffstat (limited to 'source3/torture/locktest2.c')
-rw-r--r-- | source3/torture/locktest2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/torture/locktest2.c b/source3/torture/locktest2.c index 5fbaf9ec584..45c0890dc3d 100644 --- a/source3/torture/locktest2.c +++ b/source3/torture/locktest2.c @@ -373,7 +373,7 @@ static void test_locks(char *share1, char *share2, char *nfspath1, char *nfspath ZERO_STRUCT(fnum); ZERO_STRUCT(cli); - recorded = (struct record *)malloc(sizeof(*recorded) * numops); + recorded = SMB_MALLOC_ARRAY(struct record, numops); for (n=0; n<numops; n++) { recorded[n].conn = random() % NCONNECTIONS; |