summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorHerb Lewis <herb@samba.org>2007-02-16 20:02:13 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:18:02 -0500
commit6432e901c72f533d61a7f9b9ba35203bd9357f8d (patch)
treeff506c72f5032b367a5c51b2058f0bd804402535 /source3
parent2b302791695fe29af369c3c17dc740f45d3cadd9 (diff)
downloadsamba-6432e901c72f533d61a7f9b9ba35203bd9357f8d.tar.gz
samba-6432e901c72f533d61a7f9b9ba35203bd9357f8d.tar.bz2
samba-6432e901c72f533d61a7f9b9ba35203bd9357f8d.zip
r21397: revert accidential commit
(This used to be commit 9fe5f7885771e68b11c7794653d0e4771eeac403)
Diffstat (limited to 'source3')
-rw-r--r--source3/nsswitch/wb_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nsswitch/wb_common.c b/source3/nsswitch/wb_common.c
index 13cefd135d..05d2a660e7 100644
--- a/source3/nsswitch/wb_common.c
+++ b/source3/nsswitch/wb_common.c
@@ -504,7 +504,7 @@ int read_reply(struct winbindd_response *response)
/* Mallocate memory for extra data */
- if (!(response->extra_data.data = SMB_MALLOC(extra_data_len))) {
+ if (!(response->extra_data.data = malloc(extra_data_len))) {
return -1;
}