diff options
-rw-r--r-- | source3/registry/reg_parse.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/registry/reg_parse.c b/source3/registry/reg_parse.c index a112572b55..5a22fd7998 100644 --- a/source3/registry/reg_parse.c +++ b/source3/registry/reg_parse.c @@ -791,12 +791,12 @@ handle_iconv_errno(int err, const char* obuf, size_t linenum, DEBUG(0, ("Illegal multibyte sequence at line %lu: %s", (long unsigned)(linenum+1), pos)); - assert(ilen > 0); + assert((*ilen) > 0); do { size_t il = 1; DEBUGADD(0, ("<%02x>", (unsigned char)**iptr)); - if (olen > 0) { + if ((*olen) > 0) { *(*optr)++ = '\?'; (*iptr)++; /* Todo: parametrize, e.g. skip: *optr++ = *iptr++; */ |