summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2003-05-08 20:19:21 +0000
committerGerald Carter <jerry@samba.org>2003-05-08 20:19:21 +0000
commit1463c220c507eb8b76ef6527c772b0deda754217 (patch)
treed27236aa5a79bff92e9f0a3276c4871b236bb07d
parent949b2e3f6f08f2790ced7ad83f5edc5b8f782ab3 (diff)
downloadsamba-1463c220c507eb8b76ef6527c772b0deda754217.tar.gz
samba-1463c220c507eb8b76ef6527c772b0deda754217.tar.bz2
samba-1463c220c507eb8b76ef6527c772b0deda754217.zip
fixed bug #75; add check for non-zero destlen
(This used to be commit bfcec106d00355d32eb40dde99ddd5d5bed4cedb)
-rw-r--r--source3/lib/charcnv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/charcnv.c b/source3/lib/charcnv.c
index 7acb7147fd..c3360bbb65 100644
--- a/source3/lib/charcnv.c
+++ b/source3/lib/charcnv.c
@@ -252,7 +252,7 @@ convert:
destlen = destlen - o_len;
*dest = (char *)Realloc(ob,destlen);
- if (!*dest) {
+ if (destlen && !*dest) {
DEBUG(0, ("convert_string_allocate: out of memory!\n"));
SAFE_FREE(ob);
return (size_t)-1;