From 282c98b03c0881ec9ed43ed11d5d569ea60dd358 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Fri, 23 Jun 2000 16:24:55 +0000 Subject: [PATCH] * iconv/gconv_int.h (norm_add_slashes): Protect suffix expansion. --- iconv/gconv_int.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iconv/gconv_int.h b/iconv/gconv_int.h index 44d4d36..8333a21 100644 --- a/iconv/gconv_int.h +++ b/iconv/gconv_int.h @@ -129,7 +129,7 @@ extern struct gconv_module *__gconv_modules_db; char *result; \ char *tmp; \ size_t cnt = 0; \ - size_t suffix_len = suffix == NULL ? 0 : strlen (suffix); \ + size_t suffix_len = (suffix) == NULL ? 0 : strlen (suffix); \ \ while (*cp != '\0') \ if (*cp++ == '/') \ -- 2.7.4