Compiler quietening. Bug 3107
authorJeremy Harris <jgh146exb@wizmail.org>
Mon, 5 Aug 2024 18:42:45 +0000 (19:42 +0100)
committerJeremy Harris <jgh146exb@wizmail.org>
Mon, 5 Aug 2024 18:42:45 +0000 (19:42 +0100)
src/src/tls-gnu.c

index 25690aed2ea6e638a948bf5f657dd43af84c322f..2d6cdb351916851c848ec6432412c7b881dc5e0b 100644 (file)
@@ -2314,8 +2314,9 @@ old_pool = store_pool;
     if (*s) s++;               /* now on _ between groups */
     while ((c = *s))
       {
-      for (*++s && ++s; (c = *s) && c != ')'; s++)
-       g = string_catn(g, c == '-' ? US"_" : s, 1);
+      if (*++s)
+       for (++s; (c = *s) && c != ')'; s++)
+         g = string_catn(g, c == '-' ? US"_" : s, 1);
       /* now on ) closing group */
       if ((c = *s) && *++s == '-') g = string_catn(g, US"__", 2);
       /* now on _ between groups */