summaryrefslogtreecommitdiff
path: root/source3/lib/util_str.c
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2007-09-15 20:24:35 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:30:49 -0500
commitad97bcf813d5f06df4711896eefc99c0c32651cc (patch)
tree8a65bf71ee5c2a339a4db7fc4aa9c0fa4462e53e /source3/lib/util_str.c
parentf82eb0fef609e6f24f4d60142292c557cd1fe5fd (diff)
downloadsamba-ad97bcf813d5f06df4711896eefc99c0c32651cc.tar.gz
samba-ad97bcf813d5f06df4711896eefc99c0c32651cc.tar.bz2
samba-ad97bcf813d5f06df4711896eefc99c0c32651cc.zip
r25184: Fix some C++ warnings and an uninitialized variable
(This used to be commit b64df8a3c504ab7749c21ffb26e4771a9a0a328f)
Diffstat (limited to 'source3/lib/util_str.c')
-rw-r--r--source3/lib/util_str.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/util_str.c b/source3/lib/util_str.c
index c2eeb12544..db5775b79f 100644
--- a/source3/lib/util_str.c
+++ b/source3/lib/util_str.c
@@ -995,7 +995,7 @@ BOOL in_list(const char *s, const char *list, BOOL casesensitive)
/* We know a token can't be larger
* than the entire list. */
- tok = SMB_MALLOC(bufsize+1);
+ tok = SMB_MALLOC_ARRAY(char, bufsize+1);
if (!tok) {
return False;
}