diff options
author | Volker Lendecke <vl@samba.org> | 2012-05-07 11:26:39 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2012-05-14 18:59:07 +0200 |
commit | 997da4a28bad4b60cdf429ef98e381fa9af63502 (patch) | |
tree | e95e2d90dc8bb3e3b6706c9e7d6cfc95dc32b691 /source3/locking | |
parent | aca64f642da78e777b113a6b25342f18fc18c502 (diff) | |
download | samba-997da4a28bad4b60cdf429ef98e381fa9af63502.tar.gz samba-997da4a28bad4b60cdf429ef98e381fa9af63502.tar.xz samba-997da4a28bad4b60cdf429ef98e381fa9af63502.zip |
s3: talloc_zero is not needed for structs we ndr_pull into
Autobuild-User: Volker Lendecke <vl@samba.org>
Autobuild-Date: Mon May 14 18:59:07 CEST 2012 on sn-devel-104
Diffstat (limited to 'source3/locking')
-rw-r--r-- | source3/locking/share_mode_lock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/locking/share_mode_lock.c b/source3/locking/share_mode_lock.c index de8cc3ce8b..f28332c226 100644 --- a/source3/locking/share_mode_lock.c +++ b/source3/locking/share_mode_lock.c @@ -124,7 +124,7 @@ static struct share_mode_data *parse_share_modes(TALLOC_CTX *mem_ctx, enum ndr_err_code ndr_err; DATA_BLOB blob; - d = talloc_zero(mem_ctx, struct share_mode_data); + d = talloc(mem_ctx, struct share_mode_data); if (d == NULL) { DEBUG(0, ("talloc failed\n")); goto fail; |