--- \dll\iup\a\src\iup_classinfo.c	2020-01-10 15:38:25.000000000 -0300
+++ iup_classinfo.c	2020-02-14 14:06:27.730288900 -0300
@@ -214,7 +214,6 @@
 
 static char* getChildType(int childtype)
 {
-  char* str[] = {"NO CHILD", "MANY CHILDREN"}; 
   if (childtype > IUP_CHILDMANY)
   {
     static char buf[100];
@@ -222,7 +221,10 @@
     return buf;
   }
   else
+  {
+    static const char * str[] = {"NO CHILD", "MANY CHILDREN"}; 
     return str[childtype];
+  }
 }
 
 void iupClassInfoGetDesc(Iclass* ic, Ihandle* ih, const char* attrib_name)
