Error: SHELLCHECK_WARNING (CWE-563): [#def1] /usr/bin/autopoint:31:1: warning[SC2034]: datarootdir appears unused. Verify use (or export if used externally). # 29| # - gettext_datadir directory where the data files are stored. # 30| prefix="/usr" # 31|-> datarootdir="${prefix}/share" # 32| : ${gettext_datadir="/usr/share/gettext"} # 33| : ${AUTOM4TE=autom4te} Error: SHELLCHECK_WARNING: [#def2] /usr/bin/autopoint:57:22: warning[SC3028]: In POSIX sh, RANDOM is undefined. # 55| # rather, it minimizes the probability of failure in a very cluttered /tmp # 56| # directory. # 57|-> tmp=$TMPDIR/gt$$-$RANDOM # 58| (umask 077 && mkdir "$tmp") # 59| } || Error: SHELLCHECK_WARNING (CWE-398): [#def3] /usr/bin/autopoint:78:25: warning[SC2041]: This is a literal string. To run as a command, use $(..) instead of '..' . # 76| IFS="$save_IFS" # 77| test -z "$dir" && dir=. # 78|-> for exec_ext in ''; do # 79| if test -f "$dir/$curr_executable$exec_ext"; then # 80| curr_executable="$dir/$curr_executable$exec_ext" Error: SHELLCHECK_WARNING (CWE-563): [#def4] /usr/bin/autopoint:132:3: warning[SC2034]: exec_prefix appears unused. Verify use (or export if used externally). # 130| } # 131| if test "no" = yes; then # 132|-> exec_prefix="/usr" # 133| bindir="/usr/bin" # 134| orig_installdir="$bindir" # see Makefile.am's *_SCRIPTS variables Error: SHELLCHECK_WARNING (CWE-563): [#def5] /usr/bin/autopoint:235:1: warning[SC2034]: CLICOLOR_FORCE appears unused. Verify use (or export if used externally). # 233| # 234| # Unset more variables known to interfere with behavior of common tools. # 235|-> CLICOLOR_FORCE= GREP_OPTIONS= # 236| unset CLICOLOR_FORCE GREP_OPTIONS # 237| Error: SHELLCHECK_WARNING (CWE-480): [#def6] /usr/bin/autopoint:235:16: warning[SC1007]: Remove space after = if trying to assign a value (for empty string, use var='' ... ). # 233| # 234| # Unset more variables known to interfere with behavior of common tools. # 235|-> CLICOLOR_FORCE= GREP_OPTIONS= # 236| unset CLICOLOR_FORCE GREP_OPTIONS # 237| Error: SHELLCHECK_WARNING (CWE-563): [#def7] /usr/bin/autopoint:235:17: warning[SC2034]: GREP_OPTIONS appears unused. Verify use (or export if used externally). # 233| # 234| # Unset more variables known to interfere with behavior of common tools. # 235|-> CLICOLOR_FORCE= GREP_OPTIONS= # 236| unset CLICOLOR_FORCE GREP_OPTIONS # 237| Error: SHELLCHECK_WARNING (CWE-456): [#def8] /usr/bin/autopoint:441:3: warning[SC2209]: Use var=$(command) to assign output (or quote to assign string). # 439| # 440| if test -z "$m4dir"; then # 441|-> m4dir=m4 # 442| fi # 443| Error: SHELLCHECK_WARNING: [#def9] /usr/bin/autopoint:500:6: warning[SC2194]: This word is constant. Did you forget the $ on a variable? # 498| # -------+-----------------------------+--------------------+ # 499| # 500|-> case "dirxz" in # 501| dir*) # 502| # The archive of different versions is very large (unless xz compression is Error: SHELLCHECK_WARNING: [#def10] /usr/bin/autopoint:504:10: warning[SC2194]: This word is constant. Did you forget the $ on a variable? # 502| # The archive of different versions is very large (unless xz compression is # 503| # used), but using it does not require special tools. # 504|-> case "dirxz" in # 505| dirgz) gzip -d -c < "$gettext_datadir/archive.dir.tar.gz" ;; # 506| dirbz2) bzip2 -d -c < "$gettext_datadir/archive.dir.tar.bz2" ;; Error: SHELLCHECK_WARNING (CWE-156): [#def11] /usr/bin/autopoint:510:13: warning[SC2046]: Quote this to prevent word splitting. # 508| esac \ # 509| | (cd "$work_dir" && tar xf - "gettext-$ver") # 510|-> if test `find "$work_dir" -type f -print | wc -l` = 0; then # 511| rm -rf "$work_dir" # 512| func_fatal_error "infrastructure files for version $ver not found; this is autopoint from GNU $package $version" Error: SHELLCHECK_WARNING (CWE-252): [#def12] /usr/bin/autopoint:612:5: warning[SC2164]: Use 'cd ... || exit' or 'cd ... || return' in case cd fails. # 610| gzip -d -c < "$gettext_datadir/archive.cvs.tar.gz" | (cd "$cvs_dir" && tar xf -) # 611| # 612|-> cd "$work_dir" # 613| cvsver=gettext-`echo "$ver" | sed -e 's/\./_/g'` # 614| (cvs -d "$CVSROOT" checkout -r"$cvsver" archive > /dev/null) 2>&1 | grep -v '^cvs checkout: Updating' Error: SHELLCHECK_WARNING (CWE-398): [#def13] /usr/bin/autopoint:615:5: warning[SC2038]: Use 'find .. -print0 | xargs -0 ..' or 'find .. -exec .. +' to allow non-alphanumeric filenames. # 613| cvsver=gettext-`echo "$ver" | sed -e 's/\./_/g'` # 614| (cvs -d "$CVSROOT" checkout -r"$cvsver" archive > /dev/null) 2>&1 | grep -v '^cvs checkout: Updating' # 615|-> find archive -name CVS -type d -print | xargs rm -rf # 616| cd .. # 617| rm -rf "$cvs_dir" Error: SHELLCHECK_WARNING (CWE-156): [#def14] /usr/bin/autopoint:620:13: warning[SC2046]: Quote this to prevent word splitting. # 618| # Check that really all CVS directories are gone, otherwise we would overwrite # 619| # the contents of the user's CVS directories. # 620|-> if test `find $work_dir/archive -name CVS -type d -print | wc -l` != 0; then # 621| rm -rf "$work_dir" # 622| func_fatal_error "failed to remove all CVS subdirectories" Error: SHELLCHECK_WARNING (CWE-156): [#def15] /usr/bin/autopoint:624:13: warning[SC2046]: Quote this to prevent word splitting. # 622| func_fatal_error "failed to remove all CVS subdirectories" # 623| fi # 624|-> if test `find $work_dir/archive -type f -print | wc -l` = 0; then # 625| rm -rf "$work_dir" # 626| func_fatal_error "infrastructure files for version $ver not found; this is autopoint from GNU $package $version" Error: SHELLCHECK_WARNING (CWE-563): [#def16] /usr/bin/gettext.sh:31:5: warning[SC2034]: echo appears unused. Verify use (or export if used externally). # 29| EOT # 30| } # 31|-> echo='echo_func' # 32| fi # 33| fi Error: SHELLCHECK_WARNING (CWE-156): [#def17] /usr/bin/gettext.sh:88:31: warning[SC2046]: Quote this to prevent word splitting. # 86| # result. # 87| eval_gettext () { # 88|-> gettext "$1" | (export PATH `envsubst --variables "$1"`; envsubst "$1") # 89| } # 90| Error: SHELLCHECK_WARNING (CWE-156): [#def18] /usr/bin/gettext.sh:95:42: warning[SC2046]: Quote this to prevent word splitting. # 93| # shell variables in the result. # 94| eval_ngettext () { # 95|-> ngettext "$1" "$2" "$3" | (export PATH `envsubst --variables "$1 $2"`; envsubst "$1 $2") # 96| } # 97| Error: SHELLCHECK_WARNING (CWE-156): [#def19] /usr/bin/gettext.sh:102:46: warning[SC2046]: Quote this to prevent word splitting. # 100| # shell variables in the result. # 101| eval_pgettext () { # 102|-> gettext --context="$1" "$2" | (export PATH `envsubst --variables "$2"`; envsubst "$2") # 103| } # 104| Error: SHELLCHECK_WARNING (CWE-156): [#def20] /usr/bin/gettext.sh:109:57: warning[SC2046]: Quote this to prevent word splitting. # 107| # MSGCTXT and substitutes shell variables in the result. # 108| eval_npgettext () { # 109|-> ngettext --context="$1" "$2" "$3" "$4" | (export PATH `envsubst --variables "$2 $3"`; envsubst "$2 $3") # 110| } # 111| Error: SHELLCHECK_WARNING (CWE-563): [#def21] /usr/bin/gettextize:31:1: warning[SC2034]: datarootdir appears unused. Verify use (or export if used externally). # 29| # - gettext_datadir directory where the data files are stored. # 30| prefix="/usr" # 31|-> datarootdir="${prefix}/share" # 32| : ${gettext_datadir="/usr/share/gettext"} # 33| : ${AUTOM4TE=autom4te} Error: SHELLCHECK_WARNING: [#def22] /usr/bin/gettextize:57:22: warning[SC3028]: In POSIX sh, RANDOM is undefined. # 55| # rather, it minimizes the probability of failure in a very cluttered /tmp # 56| # directory. # 57|-> tmp=$TMPDIR/gt$$-$RANDOM # 58| (umask 077 && mkdir "$tmp") # 59| } || Error: SHELLCHECK_WARNING (CWE-398): [#def23] /usr/bin/gettextize:78:25: warning[SC2041]: This is a literal string. To run as a command, use $(..) instead of '..' . # 76| IFS="$save_IFS" # 77| test -z "$dir" && dir=. # 78|-> for exec_ext in ''; do # 79| if test -f "$dir/$curr_executable$exec_ext"; then # 80| curr_executable="$dir/$curr_executable$exec_ext" Error: SHELLCHECK_WARNING (CWE-563): [#def24] /usr/bin/gettextize:132:3: warning[SC2034]: exec_prefix appears unused. Verify use (or export if used externally). # 130| } # 131| if test "no" = yes; then # 132|-> exec_prefix="/usr" # 133| bindir="/usr/bin" # 134| orig_installdir="$bindir" # see Makefile.am's *_SCRIPTS variables Error: SHELLCHECK_WARNING (CWE-563): [#def25] /usr/bin/gettextize:229:1: warning[SC2034]: CLICOLOR_FORCE appears unused. Verify use (or export if used externally). # 227| # 228| # Unset more variables known to interfere with behavior of common tools. # 229|-> CLICOLOR_FORCE= GREP_OPTIONS= # 230| unset CLICOLOR_FORCE GREP_OPTIONS # 231| Error: SHELLCHECK_WARNING (CWE-480): [#def26] /usr/bin/gettextize:229:16: warning[SC1007]: Remove space after = if trying to assign a value (for empty string, use var='' ... ). # 227| # 228| # Unset more variables known to interfere with behavior of common tools. # 229|-> CLICOLOR_FORCE= GREP_OPTIONS= # 230| unset CLICOLOR_FORCE GREP_OPTIONS # 231| Error: SHELLCHECK_WARNING (CWE-563): [#def27] /usr/bin/gettextize:229:17: warning[SC2034]: GREP_OPTIONS appears unused. Verify use (or export if used externally). # 227| # 228| # Unset more variables known to interfere with behavior of common tools. # 229|-> CLICOLOR_FORCE= GREP_OPTIONS= # 230| unset CLICOLOR_FORCE GREP_OPTIONS # 231| Error: SHELLCHECK_WARNING (CWE-252): [#def28] /usr/bin/gettextize:715:1: warning[SC2164]: Use 'cd ... || exit' or 'cd ... || return' in case cd fails. # 713| # 714| # Copy files to po/ subdirectory. # 715|-> cd po # 716| for podir in $podirs; do # 717| $do_changelog && func_poChangeLog_init Error: SHELLCHECK_WARNING (CWE-1164): [#def29] /usr/bin/gettextize:718:15: warning[SC2043]: This loop will only ever run once. Bad quoting or missing glob/expansion? # 716| for podir in $podirs; do # 717| $do_changelog && func_poChangeLog_init # 718|-> for file in Makefile.in.in; do # 719| same=no # 720| if test -f "$srcdir/$podir/$file"; then Error: SHELLCHECK_WARNING (CWE-456): [#def30] /usr/bin/gettextize:861:5: warning[SC2209]: Use var=$(command) to assign output (or quote to assign string). # 859| # 860| if test -z "$m4dir"; then # 861|-> m4dir=m4 # 862| m4dir_defaulted=yes # 863| fi Error: SHELLCHECK_WARNING (CWE-252): [#def31] /usr/bin/gettextize:1214:15: warning[SC2164]: Use 'cd ... || exit' or 'cd ... || return' in case cd fails. # 1212| # Recommend replacement for deprecated Makefile variables. # 1213| use_libtool=`cat "$srcdir/$configure_in" | grep '^A[CM]_PROG_LIBTOOL'` # 1214|-> for file in `(cd "$srcdir"; find . -name Makefile.am -print; find . -name Makefile.in -print) | sed -e 's,^\./,,'`; do # 1215| if test -f "$srcdir/$file"; then # 1216| if test `echo "$file" | sed -e 's,^.*/,,'` = Makefile.in && grep automake "$srcdir/$file" >/dev/null 2>&1; then Error: SHELLCHECK_WARNING (CWE-156): [#def32] /usr/bin/gettextize:1216:13: warning[SC2046]: Quote this to prevent word splitting. # 1214| for file in `(cd "$srcdir"; find . -name Makefile.am -print; find . -name Makefile.in -print) | sed -e 's,^\./,,'`; do # 1215| if test -f "$srcdir/$file"; then # 1216|-> if test `echo "$file" | sed -e 's,^.*/,,'` = Makefile.in && grep automake "$srcdir/$file" >/dev/null 2>&1; then # 1217| continue; # 1218| fi Error: SHELLCHECK_WARNING (CWE-398): [#def33] /usr/bin/gettextize:1223:16: warning[SC1078]: Did you forget to close this double quoted string? # 1221| if grep '@''INTLLIBS''@' "$srcdir/$file" >/dev/null; then # 1222| if test -n "$use_libtool"; then # 1223|-> please="$please # 1224| Please change $file to use @""LTLIBINTL""@ or @""LIBINTL""@ instead of # 1225| @""INTLLIBS""@. Which one, depends whether it is used with libtool or not. Error: SHELLCHECK_WARNING (CWE-398): [#def34] /usr/bin/gettextize:1224:58: warning[SC1078]: Did you forget to close this double quoted string? # 1222| if test -n "$use_libtool"; then # 1223| please="$please # 1224|-> Please change $file to use @""LTLIBINTL""@ or @""LIBINTL""@ instead of # 1225| @""INTLLIBS""@. Which one, depends whether it is used with libtool or not. # 1226| @""INTLLIBS""@ will go away. Error: SHELLCHECK_WARNING (CWE-398): [#def35] /usr/bin/gettextize:1225:13: warning[SC1078]: Did you forget to close this double quoted string? # 1223| please="$please # 1224| Please change $file to use @""LTLIBINTL""@ or @""LIBINTL""@ instead of # 1225|-> @""INTLLIBS""@. Which one, depends whether it is used with libtool or not. # 1226| @""INTLLIBS""@ will go away. # 1227| " Error: SHELLCHECK_WARNING (CWE-398): [#def36] /usr/bin/gettextize:1229:16: warning[SC1078]: Did you forget to close this double quoted string? # 1227| " # 1228| else # 1229|-> please="$please # 1230| Please change $file to use @""LIBINTL""@ instead of @""INTLLIBS""@. # 1231| @""INTLLIBS""@ will go away. Error: SHELLCHECK_WARNING (CWE-398): [#def37] /usr/bin/gettextize:1230:65: warning[SC1078]: Did you forget to close this double quoted string? # 1228| else # 1229| please="$please # 1230|-> Please change $file to use @""LIBINTL""@ instead of @""INTLLIBS""@. # 1231| @""INTLLIBS""@ will go away. # 1232| " Error: SHELLCHECK_WARNING (CWE-398): [#def38] /usr/bin/gettextize:1238:14: warning[SC1078]: Did you forget to close this double quoted string? # 1236| # which can be stored in the platform independent $prefix/share hierarchy. # 1237| if grep '@''DATADIRNAME''@' "$srcdir/$file" >/dev/null; then # 1238|-> please="$please # 1239| Please change $file to use the constant string \"share\" instead of # 1240| @""DATADIRNAME""@. @""DATADIRNAME""@ will go away. Error: SHELLCHECK_WARNING (CWE-398): [#def39] /usr/bin/gettextize:1246:14: warning[SC1078]: Did you forget to close this double quoted string? # 1244| # no catgets .cat catalogs. # 1245| if grep '@''INSTOBJEXT''@' "$srcdir/$file" >/dev/null; then # 1246|-> please="$please # 1247| Please change $file to use the constant string \".mo\" instead of # 1248| @""INSTOBJEXT""@. @""INSTOBJEXT""@ will go away. Error: SHELLCHECK_WARNING (CWE-398): [#def40] /usr/bin/gettextize:1253:14: warning[SC1078]: Did you forget to close this double quoted string? # 1251| # GENCAT is deprecated because we install no catgets catalogs anymore. # 1252| if grep '@''GENCAT''@' "$srcdir/$file" >/dev/null; then # 1253|-> please="$please # 1254| Please change $file to use the constant string \"gencat\" instead of # 1255| @""GENCAT""@. @""GENCAT""@ will go away. Maybe you don't even need it any more? Error: SHELLCHECK_WARNING (CWE-398): [#def41] /usr/bin/gettextize:1261:14: warning[SC1078]: Did you forget to close this double quoted string? # 1259| # "make dist" to create a buggy tarfile. # 1260| if grep '@''POSUB''@' "$srcdir/$file" >/dev/null; then # 1261|-> please="$please # 1262| Please change $file to use the constant string \"po\" instead of # 1263| @""POSUB""@. @""POSUB""@ will go away. Error: SHELLCHECK_WARNING (CWE-563): [#def42] /usr/bin/gettextize:1310:8: warning[SC2034]: dummy appears unused. Verify use (or export if used externally). # 1308| # Read from /dev/tty, not stdin, so that gettextize cannot be abused by # 1309| # non-interactive tools. # 1310|-> read dummy < /dev/tty # 1311| fi # 1312| Error: SHELLCHECK_WARNING (CWE-563): [#def43] /usr/libexec/gettext/user-email:21:1: warning[SC2034]: exec_prefix appears unused. Verify use (or export if used externally). # 19| # Prerequisites for using /usr/libexec and ${datarootdir}/locale. # 20| prefix="/usr" # 21|-> exec_prefix="/usr" # 22| datarootdir="${prefix}/share" # 23| datadir="/usr/share" Error: SHELLCHECK_WARNING (CWE-563): [#def44] /usr/libexec/gettext/user-email:23:1: warning[SC2034]: datadir appears unused. Verify use (or export if used externally). # 21| exec_prefix="/usr" # 22| datarootdir="${prefix}/share" # 23|-> datadir="/usr/share" # 24| # Set variables libexecdir, localedir. # 25| libexecdir="/usr/libexec" Error: SHELLCHECK_WARNING (CWE-252): [#def45] /usr/libexec/gettext/user-email:92:1: warning[SC2164]: Use 'cd ... || exit' or 'cd ... || return' in case cd fails. # 90| # All mailers use configuration files under $HOME. We handle them in a # 91| # last-modified - first-priority order. # 92|-> cd $HOME # 93| files="" # 94| Error: SHELLCHECK_WARNING (CWE-398): [#def46] /usr/libexec/gettext/user-email:162:15: warning[SC2045]: Iterating over ls output is fragile. Use globs. # 160| if test -n "$files"; then # 161| # 162|-> for file in `ls -t $files`; do # 163| # 164| case "$file" in Error: SHELLCHECK_WARNING (CWE-156): [#def47] /usr/libexec/gettext/user-email:216:97: warning[SC2046]: Quote this to prevent word splitting. # 214| sedexpr1='s/\(..\)/\\x\1/g' # 215| sedexpr2='s,$,\\n,' # 216|-> addresses="$addresses "`sed -n -e "$sedexpr0" < $file | while read hexstring; do printf \`echo "$hexstring" | sed -e "$sedexpr1" -e "$sedexpr2"\`; done` # 217| ;; # 218| Error: SHELLCHECK_WARNING (CWE-480): [#def48] /usr/share/gettext/config.rpath:647:17: warning[SC1007]: Remove space after = if trying to assign a value (for empty string, use var='' ... ). # 645| case "$host_os" in # 646| irix5* | nonstopux*) # 647|-> libsuff= shlibsuff= # 648| ;; # 649| *) Error: SHELLCHECK_WARNING (CWE-480): [#def49] /usr/share/gettext/config.rpath:651:64: warning[SC1007]: Remove space after = if trying to assign a value (for empty string, use var='' ... ). # 649| *) # 650| case $LD in # 651|-> *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= ;; # 652| *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 ;; # 653| *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 ;; Error: SHELLCHECK_WARNING (CWE-563): [#def50] /usr/share/gettext/config.rpath:654:14: warning[SC2034]: libsuff appears unused. Verify use (or export if used externally). # 652| *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 ;; # 653| *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 ;; # 654|-> *) libsuff= shlibsuff= ;; # 655| esac # 656| ;; Error: SHELLCHECK_WARNING (CWE-480): [#def51] /usr/share/gettext/config.rpath:654:22: warning[SC1007]: Remove space after = if trying to assign a value (for empty string, use var='' ... ). # 652| *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 ;; # 653| *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 ;; # 654|-> *) libsuff= shlibsuff= ;; # 655| esac # 656| ;; Error: SHELLCHECK_WARNING (CWE-563): [#def52] /usr/share/gettext/config.rpath:654:23: warning[SC2034]: shlibsuff appears unused. Verify use (or export if used externally). # 652| *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 ;; # 653| *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 ;; # 654|-> *) libsuff= shlibsuff= ;; # 655| esac # 656| ;; Error: SHELLCHECK_WARNING (CWE-569): [#def53] /usr/share/gettext/config.rpath:661:12: warning[SC2221]: This pattern always overrides a later one on line 664. # 659| linux*oldld* | linux*aout* | linux*coff*) # 660| ;; # 661|-> linux* | k*bsd*-gnu | kopensolaris*-gnu) # 662| library_names_spec='$libname$shrext' # 663| ;; Error: SHELLCHECK_WARNING (CWE-569): [#def54] /usr/share/gettext/config.rpath:664:3: warning[SC2222]: This pattern never matches because of a previous pattern on line 661. # 662| library_names_spec='$libname$shrext' # 663| ;; # 664|-> knetbsd*-gnu) # 665| library_names_spec='$libname$shrext' # 666| ;; Error: SHELLCHECK_WARNING (CWE-156): [#def55] /usr/share/gettext/projects/GNOME/team-address:39:39: warning[SC2046]: Quote this to prevent word splitting. # 37| ) 1>&2 # 38| else # 39|-> (echo "A translation team for your "`if test "$catalog" = "$language"; then echo "language ($language)"; else echo "local dialect ($catalog)"; fi` # 40| echo "may not exist yet. Please visit" # 41| echo " $url" Error: SHELLCHECK_WARNING (CWE-156): [#def56] /usr/share/gettext/projects/GNOME/trigger:38:17: warning[SC2046]: Quote this to prevent word splitting. # 36| exit 1 # 37| fi # 38|-> dir=`basename \`pwd\`` # 39| case "$dir" in # 40| i18n) Error: SHELLCHECK_WARNING (CWE-156): [#def57] /usr/share/gettext/projects/KDE/team-address:125:39: warning[SC2046]: Quote this to prevent word splitting. # 123| # address can be empty or contain 1 or more space separated URLs. # 124| else # 125|-> (echo "A translation team for your "`if test "$catalog" = "$language"; then echo "language ($language)"; else echo "local dialect ($catalog)"; fi` # 126| echo "may not exist yet. Please visit" # 127| echo " $url" Error: SHELLCHECK_WARNING (CWE-563): [#def58] /usr/share/gettext/projects/KDE/team-address:131:3: warning[SC2034]: address appears unused. Verify use (or export if used externally). # 129| echo "and decide whether you want to create a new translation team." # 130| ) 1>&2 # 131|-> address= # 132| fi # 133| exit 0 Error: SHELLCHECK_WARNING (CWE-156): [#def59] /usr/share/gettext/projects/KDE/trigger:40:17: warning[SC2046]: Quote this to prevent word splitting. # 38| exit 1 # 39| fi # 40|-> dir=`basename \`pwd\`` # 41| case "$dir" in # 42| i18n) Error: SHELLCHECK_WARNING (CWE-156): [#def60] /usr/share/gettext/projects/TP/team-address:40:26: warning[SC2046]: Quote this to prevent word splitting. # 38| esac # 39| (echo "Please visit your translation team's homepage at" # 40|-> echo " ${url_parent}"`echo "$html" | tr '\012' '|' | sed -e "$sed_addnl" | sed -n -e "s,^.*<td><a href=\"\\([^\"]*\\)\">[^<>]*</a></td>[^<>]*<td>$catalog</td>.*\$,\\1,p" | sed 1q` # 41| echo " https://translationproject.org/team/index.html" # 42| echo " https://translationproject.org/html/translators.html" Error: SHELLCHECK_WARNING (CWE-156): [#def61] /usr/share/gettext/projects/TP/team-address:60:26: warning[SC2046]: Quote this to prevent word splitting. # 58| echo # 59| echo "Please visit the existing translation team's homepage at" # 60|-> echo " ${url_parent}"`echo "$html" | tr '\012' '|' | sed -e "$sed_addnl" | sed -n -e "s,^.*<td><a href=\"\\([^\"]*\\)\">[^<>]*</a></td>[^<>]*<td>$language</td>.*\$,\\1,p" | sed 1q` # 61| echo " https://translationproject.org/team/index.html" # 62| echo " https://translationproject.org/html/translators.html" Error: SHELLCHECK_WARNING (CWE-156): [#def62] /usr/share/gettext/projects/TP/team-address:76:67: warning[SC2046]: Quote this to prevent word splitting. # 74| fi # 75| (echo "A translation team for your language ($language) does not exist yet." # 76|-> echo "If you want to create a new translation team for $language"`test "$catalog" = "$language" || echo " or $catalog"`", please visit" # 77| echo " https://translationproject.org/team/index.html" # 78| echo " https://translationproject.org/html/leaders.html" Error: COMPILER_WARNING: [#def63] gettext-0.24/gettext-runtime/intl/localealias.c: scope_hint: In function 'read_alias_file' gettext-0.24/gettext-runtime/intl/localealias.c:370:24: warning[-Wuse-after-free]: pointer may be used after 'realloc' # 370 | if (__builtin_expect (string_space != new_pool, 0)) # | ^ gettext-0.24/gettext-tools/gnulib-lib/stdlib.h:2069:10: note: call to 'realloc' here # 2069 | return realloc (ptr, size ? size : 1); # | ^ # 368| goto out; # 369| # 370|-> if (__builtin_expect (string_space != new_pool, 0)) # 371| { # 372| size_t i; Error: COMPILER_WARNING: [#def64] gettext-0.24/gettext-runtime/intl/localealias.c: scope_hint: In function 'read_alias_file' gettext-0.24/gettext-runtime/intl/localealias.c:376:54: warning[-Wuse-after-free]: pointer may be used after 'realloc' # 376 | map[i].alias += new_pool - string_space; # | ^ gettext-0.24/gettext-tools/gnulib-lib/stdlib.h:2069:10: note: call to 'realloc' here # 2069 | return realloc (ptr, size ? size : 1); # | ^ # 374| for (i = 0; i < nmap; i++) # 375| { # 376|-> map[i].alias += new_pool - string_space; # 377| map[i].value += new_pool - string_space; # 378| } Error: GCC_ANALYZER_WARNING (CWE-401): [#def65] gettext-0.24/gettext-runtime/src/../gnulib-lib/gettext.h:298:27: warning[-Wanalyzer-malloc-leak]: leak of ‘<unknown>’ gettext-0.24/gettext-runtime/src/ngettext.c:61:1: enter_function: entry to ‘main’ gettext-0.24/gettext-runtime/src/ngettext.c:92:10: branch_true: following ‘true’ branch (when ‘optchar != -1’)... gettext-0.24/gettext-runtime/src/ngettext.c:94:5: branch_true: ...to here gettext-0.24/gettext-runtime/src/ngettext.c:121:6: branch_false: following ‘false’ branch (when ‘do_version == 0’)... gettext-0.24/gettext-runtime/src/ngettext.c:137:6: branch_false: ...to here gettext-0.24/gettext-runtime/src/ngettext.c:137:6: branch_false: following ‘false’ branch (when ‘do_help == 0’)... gettext-0.24/gettext-runtime/src/ngettext.c:141:11: branch_false: ...to here gettext-0.24/gettext-runtime/src/ngettext.c:164:6: branch_false: following ‘false’ branch... gettext-0.24/gettext-runtime/src/ngettext.c:171:5: branch_false: ...to here gettext-0.24/gettext-runtime/src/ngettext.c:181:6: branch_true: following ‘true’ branch... gettext-0.24/gettext-runtime/src/ngettext.c:183:15: branch_true: ...to here gettext-0.24/gettext-runtime/src/ngettext.c:183:15: call_function: calling ‘expand_escapes’ from ‘main’ gettext-0.24/gettext-runtime/src/ngettext.c:183:15: return_function: returning to ‘main’ from ‘expand_escapes’ gettext-0.24/gettext-runtime/src/ngettext.c:189:6: branch_false: following ‘false’ branch... gettext-0.24/gettext-runtime/src/ngettext.c:198:7: branch_true: following ‘true’ branch (when ‘context’ is non-NULL)... gettext-0.24/gettext-runtime/src/ngettext.c:199:17: branch_true: ...to here gettext-0.24/gettext-runtime/src/../gnulib-lib/gettext.h:298:27: danger: ‘<unknown>’ leaks here; was allocated at [(21)](sarif:/runs/0/results/0/codeFlows/0/threadFlows/0/locations/20) # 296| memcpy (msg_ctxt_id + msgctxt_len, msgid, msgid_len); # 297| translation = dcngettext (domain, msg_ctxt_id, msgid_plural, n, category); # 298|-> found_translation = !(translation == msg_ctxt_id || translation == msgid_plural); # 299| #if !_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS # 300| if (msg_ctxt_id != buf) Error: GCC_ANALYZER_WARNING (CWE-401): [#def66] gettext-0.24/gettext-runtime/src/gettext.c:238:3: warning[-Wanalyzer-malloc-leak]: leak of ‘<unknown>’ gettext-0.24/gettext-runtime/src/gettext.c:66:1: enter_function: entry to ‘main’ gettext-0.24/gettext-runtime/src/gettext.c:131:6: branch_false: following ‘false’ branch (when ‘do_version == 0’)... gettext-0.24/gettext-runtime/src/gettext.c:147:6: branch_false: ...to here gettext-0.24/gettext-runtime/src/gettext.c:147:6: branch_false: following ‘false’ branch (when ‘do_help == 0’)... gettext-0.24/gettext-runtime/src/gettext.c:152:6: branch_false: ...to here gettext-0.24/gettext-runtime/src/gettext.c:152:6: branch_false: following ‘false’ branch (when ‘do_shell == 0’)... gettext-0.24/gettext-runtime/src/gettext.c:157:15: branch_false: ...to here gettext-0.24/gettext-runtime/src/gettext.c:176:10: branch_true: following ‘true’ branch... gettext-0.24/gettext-runtime/src/gettext.c:177:17: branch_true: ...to here gettext-0.24/gettext-runtime/src/gettext.c:177:17: call_function: calling ‘expand_escapes’ from ‘main’ gettext-0.24/gettext-runtime/src/gettext.c:177:17: return_function: returning to ‘main’ from ‘expand_escapes’ gettext-0.24/gettext-runtime/src/gettext.c:238:3: danger: ‘<unknown>’ leaks here; was allocated at [(19)](sarif:/runs/0/results/0/codeFlows/0/threadFlows/0/locations/18) # 236| } # 237| # 238|-> exit (EXIT_SUCCESS); # 239| } # 240| Error: GCC_ANALYZER_WARNING (CWE-401): [#def67] gettext-0.24/gettext-runtime/src/ngettext.c:190:5: warning[-Wanalyzer-malloc-leak]: leak of ‘<unknown>’ gettext-0.24/gettext-runtime/src/ngettext.c:61:1: enter_function: entry to ‘main’ gettext-0.24/gettext-runtime/src/ngettext.c:121:6: branch_false: following ‘false’ branch (when ‘do_version == 0’)... gettext-0.24/gettext-runtime/src/ngettext.c:137:6: branch_false: ...to here gettext-0.24/gettext-runtime/src/ngettext.c:137:6: branch_false: following ‘false’ branch (when ‘do_help == 0’)... gettext-0.24/gettext-runtime/src/ngettext.c:141:11: branch_false: ...to here gettext-0.24/gettext-runtime/src/ngettext.c:164:6: branch_false: following ‘false’ branch... gettext-0.24/gettext-runtime/src/ngettext.c:171:5: branch_false: ...to here gettext-0.24/gettext-runtime/src/ngettext.c:181:6: branch_true: following ‘true’ branch... gettext-0.24/gettext-runtime/src/ngettext.c:183:15: branch_true: ...to here gettext-0.24/gettext-runtime/src/ngettext.c:183:15: call_function: calling ‘expand_escapes’ from ‘main’ gettext-0.24/gettext-runtime/src/ngettext.c:183:15: return_function: returning to ‘main’ from ‘expand_escapes’ gettext-0.24/gettext-runtime/src/ngettext.c:190:5: branch_false: following ‘false’ branch (when ‘n != 1’)... branch_false: ...to here gettext-0.24/gettext-runtime/src/ngettext.c:190:5: danger: ‘<unknown>’ leaks here; was allocated at [(19)](sarif:/runs/0/results/1/codeFlows/0/threadFlows/0/locations/18) # 188| plural form handling. */ # 189| if (domain == NULL || domain[0] == '\0') # 190|-> fputs (n == 1 ? msgid : msgid_plural, stdout); # 191| else # 192| { Error: GCC_ANALYZER_WARNING (CWE-401): [#def68] gettext-0.24/gettext-runtime/src/ngettext.c:198:7: warning[-Wanalyzer-malloc-leak]: leak of ‘<unknown>’ gettext-0.24/gettext-runtime/src/ngettext.c:61:1: enter_function: entry to ‘main’ gettext-0.24/gettext-runtime/src/ngettext.c:121:6: branch_false: following ‘false’ branch (when ‘do_version == 0’)... gettext-0.24/gettext-runtime/src/ngettext.c:137:6: branch_false: ...to here gettext-0.24/gettext-runtime/src/ngettext.c:137:6: branch_false: following ‘false’ branch (when ‘do_help == 0’)... gettext-0.24/gettext-runtime/src/ngettext.c:141:11: branch_false: ...to here gettext-0.24/gettext-runtime/src/ngettext.c:164:6: branch_false: following ‘false’ branch... gettext-0.24/gettext-runtime/src/ngettext.c:171:5: branch_false: ...to here gettext-0.24/gettext-runtime/src/ngettext.c:181:6: branch_true: following ‘true’ branch... gettext-0.24/gettext-runtime/src/ngettext.c:183:15: branch_true: ...to here gettext-0.24/gettext-runtime/src/ngettext.c:183:15: call_function: calling ‘expand_escapes’ from ‘main’ gettext-0.24/gettext-runtime/src/ngettext.c:183:15: return_function: returning to ‘main’ from ‘expand_escapes’ gettext-0.24/gettext-runtime/src/ngettext.c:189:6: branch_false: following ‘false’ branch... gettext-0.24/gettext-runtime/src/ngettext.c:198:7: branch_false: following ‘false’ branch (when ‘context’ is NULL)... gettext-0.24/gettext-runtime/src/ngettext.c:200:17: branch_false: ...to here gettext-0.24/gettext-runtime/src/ngettext.c:198:7: danger: ‘<unknown>’ leaks here; was allocated at [(19)](sarif:/runs/0/results/3/codeFlows/0/threadFlows/0/locations/18) # 196| # 197| /* Write out the result. */ # 198|-> fputs ((context != NULL # 199| ? dnpgettext_expr (domain, context, msgid, msgid_plural, n) # 200| : dngettext (domain, msgid, msgid_plural, n)), Error: COMPILER_WARNING: [#def69] gettext-0.24/gettext-tools/gnulib-lib/bcp47.c:104:19: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (5 chars into 4 available) # 104 | { "latin", "Latn" }, # | ^~~~~~ # 102| { # 103| #define SCRIPT_LATIN 0 # 104|-> { "latin", "Latn" }, # 105| #define SCRIPT_CYRILLIC 1 # 106| { "cyrillic", "Cyrl" }, Error: COMPILER_WARNING: [#def70] gettext-0.24/gettext-tools/gnulib-lib/bcp47.c:106:19: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (5 chars into 4 available) # 106 | { "cyrillic", "Cyrl" }, # | ^~~~~~ # 104| { "latin", "Latn" }, # 105| #define SCRIPT_CYRILLIC 1 # 106|-> { "cyrillic", "Cyrl" }, # 107| #define SCRIPT_HEBREW 2 # 108| { "hebrew", "Hebr" }, Error: COMPILER_WARNING: [#def71] gettext-0.24/gettext-tools/gnulib-lib/bcp47.c:108:19: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (5 chars into 4 available) # 108 | { "hebrew", "Hebr" }, # | ^~~~~~ # 106| { "cyrillic", "Cyrl" }, # 107| #define SCRIPT_HEBREW 2 # 108|-> { "hebrew", "Hebr" }, # 109| #define SCRIPT_ARABIC 3 # 110| { "arabic", "Arab" }, Error: COMPILER_WARNING: [#def72] gettext-0.24/gettext-tools/gnulib-lib/bcp47.c:110:19: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (5 chars into 4 available) # 110 | { "arabic", "Arab" }, # | ^~~~~~ # 108| { "hebrew", "Hebr" }, # 109| #define SCRIPT_ARABIC 3 # 110|-> { "arabic", "Arab" }, # 111| #define SCRIPT_DEVANAGARI 4 # 112| { "devanagari", "Deva" }, Error: COMPILER_WARNING: [#def73] gettext-0.24/gettext-tools/gnulib-lib/bcp47.c:112:19: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (5 chars into 4 available) # 112 | { "devanagari", "Deva" }, # | ^~~~~~ # 110| { "arabic", "Arab" }, # 111| #define SCRIPT_DEVANAGARI 4 # 112|-> { "devanagari", "Deva" }, # 113| #define SCRIPT_GURMUKHI 5 # 114| { "gurmukhi", "Guru" }, Error: COMPILER_WARNING: [#def74] gettext-0.24/gettext-tools/gnulib-lib/bcp47.c:114:19: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (5 chars into 4 available) # 114 | { "gurmukhi", "Guru" }, # | ^~~~~~ # 112| { "devanagari", "Deva" }, # 113| #define SCRIPT_GURMUKHI 5 # 114|-> { "gurmukhi", "Guru" }, # 115| #define SCRIPT_MONGOLIAN 6 # 116| { "mongolian", "Mong" } Error: COMPILER_WARNING: [#def75] gettext-0.24/gettext-tools/gnulib-lib/bcp47.c:116:19: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (5 chars into 4 available) # 116 | { "mongolian", "Mong" } # | ^~~~~~ # 114| { "gurmukhi", "Guru" }, # 115| #define SCRIPT_MONGOLIAN 6 # 116|-> { "mongolian", "Mong" } # 117| }; # 118| #define NUM_SCRIPTS (sizeof (scripts) / sizeof (scripts[0])) Error: CPPCHECK_WARNING (CWE-476): [#def76] gettext-0.24/gettext-tools/gnulib-lib/canonicalize.c:454: warning[nullPointerOutOfMemory]: If memory allocation fails, then there is a possible null pointer dereference: result # 452| if (!result) # 453| xalloc_die (); # 454|-> return memcpy (result, rname, dest - rname); # 455| } # 456| Error: COMPILER_WARNING (CWE-562): [#def77] gettext-0.24/gettext-tools/gnulib-lib/careadlinkat.c: scope_hint: In function 'careadlinkat' gettext-0.24/gettext-tools/gnulib-lib/careadlinkat.c:180:10: warning[-Wreturn-local-addr]: function may return address of local variable # 180 | return readlink_stk (fd, filename, buffer, buffer_size, alloc, # | ^ gettext-0.24/gettext-tools/gnulib-lib/careadlinkat.c:179:8: note: declared here # 179 | char stack_buf[STACK_BUF_SIZE]; # | ^ # 178| #endif # 179| char stack_buf[STACK_BUF_SIZE]; # 180|-> return readlink_stk (fd, filename, buffer, buffer_size, alloc, # 181| preadlinkat, stack_buf); # 182| } Error: GCC_ANALYZER_WARNING (CWE-775): [#def78] gettext-0.24/gettext-tools/gnulib-lib/clean-temp.c:618:10: warning[-Wanalyzer-file-leak]: leak of FILE 'fopen(file_name, mode)' gettext-0.24/gettext-tools/gnulib-lib/clean-temp.c:609:12: acquire_resource: opened here gettext-0.24/gettext-tools/gnulib-lib/clean-temp.c:612:6: branch_true: following 'true' branch... gettext-0.24/gettext-tools/gnulib-lib/clean-temp.c:617:16: branch_true: ...to here gettext-0.24/gettext-tools/gnulib-lib/clean-temp.c:618:10: danger: 'fopen(file_name, mode)' leaks here; was opened at [(1)](sarif:/runs/0/results/0/codeFlows/0/threadFlows/0/locations/0) # 616| close (fileno (fp)) will be enough. */ # 617| int fd = fileno (fp); # 618|-> if (!(fd >= 0)) # 619| abort (); # 620| register_fd (fd); Error: CPPCHECK_WARNING (CWE-457): [#def79] gettext-0.24/gettext-tools/gnulib-lib/gl_anylinked_list2.h:952: error[uninitvar]: Uninitialized variables: result.count, result.i, result.j # 950| #endif # 951| # 952|-> return result; # 953| } # 954| Error: CPPCHECK_WARNING (CWE-457): [#def80] gettext-0.24/gettext-tools/gnulib-lib/gl_anylinked_list2.h:1023: warning[uninitvar]: Uninitialized variables: result.count, result.i, result.j # 1021| #endif # 1022| # 1023|-> return result; # 1024| } # 1025| Error: CPPCHECK_WARNING (CWE-457): [#def81] gettext-0.24/gettext-tools/gnulib-lib/javaversion.c:112: error[legacyUninitvar]: Uninitialized variable: malloc_pkgdatadir # 110| const char *class_name = "javaversion"; # 111| char *malloc_pkgdatadir; # 112|-> const char *pkgdatadir = relocate2 (PKGDATADIR, &malloc_pkgdatadir); # 113| const char *args[1]; # 114| struct locals locals; Error: COMPILER_WARNING: [#def82] gettext-0.24/gettext-tools/gnulib-lib/striconveh.c: scope_hint: In function 'mem_cd_iconveh_internal' gettext-0.24/gettext-tools/gnulib-lib/striconveh.c:795:57: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (17 chars into 16 available) # 795 | static char const hex[16] = "0123456789ABCDEF"; # | ^~~~~~~~~~~~~~~~~~ # 793| if (handler == iconveh_escape_sequence) # 794| { # 795|-> static char const hex[16] = "0123456789ABCDEF"; # 796| scratchlen = 0; # 797| scratchbuf[scratchlen++] = '\\'; Error: COMPILER_WARNING: [#def83] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:39:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 39 | "\x00\x49\x00", 1, SCC_MORE_ABOVE , { 'l', 't' }, { 0x0049, 0, 0 }, { 0x0069, 0x0307, 0 }, { 0x0049, 0, 0 }, { 0x0069, 0, 0 } # | ^~~~~~~~~~~ # 37| %omit-struct-type # 38| %% # 39|-> "\x00\x49\x00", 1, SCC_MORE_ABOVE , { 'l', 't' }, { 0x0049, 0, 0 }, { 0x0069, 0x0307, 0 }, { 0x0049, 0, 0 }, { 0x0069, 0, 0 } # 40| "\x00\x49\x01", 1, -SCC_BEFORE_DOT , { 't', 'r' }, { 0x0049, 0, 0 }, { 0x0131, 0, 0 }, { 0x0049, 0, 0 }, { 0x0131, 0, 0 } # 41| "\x00\x49\x02", 1, -SCC_BEFORE_DOT , { 'a', 'z' }, { 0x0049, 0, 0 }, { 0x0131, 0, 0 }, { 0x0049, 0, 0 }, { 0x0131, 0, 0 } Error: COMPILER_WARNING: [#def84] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:40:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 40 | "\x00\x49\x01", 1, -SCC_BEFORE_DOT , { 't', 'r' }, { 0x0049, 0, 0 }, { 0x0131, 0, 0 }, { 0x0049, 0, 0 }, { 0x0131, 0, 0 } # | ^~~~~~~~~~~ # 38| %% # 39| "\x00\x49\x00", 1, SCC_MORE_ABOVE , { 'l', 't' }, { 0x0049, 0, 0 }, { 0x0069, 0x0307, 0 }, { 0x0049, 0, 0 }, { 0x0069, 0, 0 } # 40|-> "\x00\x49\x01", 1, -SCC_BEFORE_DOT , { 't', 'r' }, { 0x0049, 0, 0 }, { 0x0131, 0, 0 }, { 0x0049, 0, 0 }, { 0x0131, 0, 0 } # 41| "\x00\x49\x02", 1, -SCC_BEFORE_DOT , { 'a', 'z' }, { 0x0049, 0, 0 }, { 0x0131, 0, 0 }, { 0x0049, 0, 0 }, { 0x0131, 0, 0 } # 42| "\x00\x49\x03", 1, SCC_ALWAYS , { 't', 'r' }, { 0x0049, 0, 0 }, { 0x0069, 0, 0 }, { 0x0049, 0, 0 }, { 0x0131, 0, 0 } Error: COMPILER_WARNING: [#def85] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:41:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 41 | "\x00\x49\x02", 1, -SCC_BEFORE_DOT , { 'a', 'z' }, { 0x0049, 0, 0 }, { 0x0131, 0, 0 }, { 0x0049, 0, 0 }, { 0x0131, 0, 0 } # | ^~~~~~~~~~~ # 39| "\x00\x49\x00", 1, SCC_MORE_ABOVE , { 'l', 't' }, { 0x0049, 0, 0 }, { 0x0069, 0x0307, 0 }, { 0x0049, 0, 0 }, { 0x0069, 0, 0 } # 40| "\x00\x49\x01", 1, -SCC_BEFORE_DOT , { 't', 'r' }, { 0x0049, 0, 0 }, { 0x0131, 0, 0 }, { 0x0049, 0, 0 }, { 0x0131, 0, 0 } # 41|-> "\x00\x49\x02", 1, -SCC_BEFORE_DOT , { 'a', 'z' }, { 0x0049, 0, 0 }, { 0x0131, 0, 0 }, { 0x0049, 0, 0 }, { 0x0131, 0, 0 } # 42| "\x00\x49\x03", 1, SCC_ALWAYS , { 't', 'r' }, { 0x0049, 0, 0 }, { 0x0069, 0, 0 }, { 0x0049, 0, 0 }, { 0x0131, 0, 0 } # 43| "\x00\x49\x04", 0, SCC_ALWAYS , { 'a', 'z' }, { 0x0049, 0, 0 }, { 0x0069, 0, 0 }, { 0x0049, 0, 0 }, { 0x0131, 0, 0 } Error: COMPILER_WARNING: [#def86] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:42:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 42 | "\x00\x49\x03", 1, SCC_ALWAYS , { 't', 'r' }, { 0x0049, 0, 0 }, { 0x0069, 0, 0 }, { 0x0049, 0, 0 }, { 0x0131, 0, 0 } # | ^~~~~~~~~~~ # 40| "\x00\x49\x01", 1, -SCC_BEFORE_DOT , { 't', 'r' }, { 0x0049, 0, 0 }, { 0x0131, 0, 0 }, { 0x0049, 0, 0 }, { 0x0131, 0, 0 } # 41| "\x00\x49\x02", 1, -SCC_BEFORE_DOT , { 'a', 'z' }, { 0x0049, 0, 0 }, { 0x0131, 0, 0 }, { 0x0049, 0, 0 }, { 0x0131, 0, 0 } # 42|-> "\x00\x49\x03", 1, SCC_ALWAYS , { 't', 'r' }, { 0x0049, 0, 0 }, { 0x0069, 0, 0 }, { 0x0049, 0, 0 }, { 0x0131, 0, 0 } # 43| "\x00\x49\x04", 0, SCC_ALWAYS , { 'a', 'z' }, { 0x0049, 0, 0 }, { 0x0069, 0, 0 }, { 0x0049, 0, 0 }, { 0x0131, 0, 0 } # 44| "\x00\x4a\x00", 0, SCC_MORE_ABOVE , { 'l', 't' }, { 0x004A, 0, 0 }, { 0x006A, 0x0307, 0 }, { 0x004A, 0, 0 }, { 0x006A, 0, 0 } Error: COMPILER_WARNING: [#def87] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:43:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 43 | "\x00\x49\x04", 0, SCC_ALWAYS , { 'a', 'z' }, { 0x0049, 0, 0 }, { 0x0069, 0, 0 }, { 0x0049, 0, 0 }, { 0x0131, 0, 0 } # | ^~~~~~~~~~~ # 41| "\x00\x49\x02", 1, -SCC_BEFORE_DOT , { 'a', 'z' }, { 0x0049, 0, 0 }, { 0x0131, 0, 0 }, { 0x0049, 0, 0 }, { 0x0131, 0, 0 } # 42| "\x00\x49\x03", 1, SCC_ALWAYS , { 't', 'r' }, { 0x0049, 0, 0 }, { 0x0069, 0, 0 }, { 0x0049, 0, 0 }, { 0x0131, 0, 0 } # 43|-> "\x00\x49\x04", 0, SCC_ALWAYS , { 'a', 'z' }, { 0x0049, 0, 0 }, { 0x0069, 0, 0 }, { 0x0049, 0, 0 }, { 0x0131, 0, 0 } # 44| "\x00\x4a\x00", 0, SCC_MORE_ABOVE , { 'l', 't' }, { 0x004A, 0, 0 }, { 0x006A, 0x0307, 0 }, { 0x004A, 0, 0 }, { 0x006A, 0, 0 } # 45| "\x00\x69\x00", 1, SCC_ALWAYS , { 't', 'r' }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 } Error: COMPILER_WARNING: [#def88] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:44:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 44 | "\x00\x4a\x00", 0, SCC_MORE_ABOVE , { 'l', 't' }, { 0x004A, 0, 0 }, { 0x006A, 0x0307, 0 }, { 0x004A, 0, 0 }, { 0x006A, 0, 0 } # | ^~~~~~~~~~~ # 42| "\x00\x49\x03", 1, SCC_ALWAYS , { 't', 'r' }, { 0x0049, 0, 0 }, { 0x0069, 0, 0 }, { 0x0049, 0, 0 }, { 0x0131, 0, 0 } # 43| "\x00\x49\x04", 0, SCC_ALWAYS , { 'a', 'z' }, { 0x0049, 0, 0 }, { 0x0069, 0, 0 }, { 0x0049, 0, 0 }, { 0x0131, 0, 0 } # 44|-> "\x00\x4a\x00", 0, SCC_MORE_ABOVE , { 'l', 't' }, { 0x004A, 0, 0 }, { 0x006A, 0x0307, 0 }, { 0x004A, 0, 0 }, { 0x006A, 0, 0 } # 45| "\x00\x69\x00", 1, SCC_ALWAYS , { 't', 'r' }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 } # 46| "\x00\x69\x01", 0, SCC_ALWAYS , { 'a', 'z' }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 } Error: COMPILER_WARNING: [#def89] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:45:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 45 | "\x00\x69\x00", 1, SCC_ALWAYS , { 't', 'r' }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 } # | ^~~~~~~~~~~ # 43| "\x00\x49\x04", 0, SCC_ALWAYS , { 'a', 'z' }, { 0x0049, 0, 0 }, { 0x0069, 0, 0 }, { 0x0049, 0, 0 }, { 0x0131, 0, 0 } # 44| "\x00\x4a\x00", 0, SCC_MORE_ABOVE , { 'l', 't' }, { 0x004A, 0, 0 }, { 0x006A, 0x0307, 0 }, { 0x004A, 0, 0 }, { 0x006A, 0, 0 } # 45|-> "\x00\x69\x00", 1, SCC_ALWAYS , { 't', 'r' }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 } # 46| "\x00\x69\x01", 0, SCC_ALWAYS , { 'a', 'z' }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 } # 47| "\x00\xcc\x00", 0, SCC_ALWAYS , { 'l', 't' }, { 0x00CC, 0, 0 }, { 0x0069, 0x0307, 0x0300 }, { 0x00CC, 0, 0 }, { 0x00EC, 0, 0 } Error: COMPILER_WARNING: [#def90] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:46:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 46 | "\x00\x69\x01", 0, SCC_ALWAYS , { 'a', 'z' }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 } # | ^~~~~~~~~~~ # 44| "\x00\x4a\x00", 0, SCC_MORE_ABOVE , { 'l', 't' }, { 0x004A, 0, 0 }, { 0x006A, 0x0307, 0 }, { 0x004A, 0, 0 }, { 0x006A, 0, 0 } # 45| "\x00\x69\x00", 1, SCC_ALWAYS , { 't', 'r' }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 } # 46|-> "\x00\x69\x01", 0, SCC_ALWAYS , { 'a', 'z' }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 } # 47| "\x00\xcc\x00", 0, SCC_ALWAYS , { 'l', 't' }, { 0x00CC, 0, 0 }, { 0x0069, 0x0307, 0x0300 }, { 0x00CC, 0, 0 }, { 0x00EC, 0, 0 } # 48| "\x00\xcd\x00", 0, SCC_ALWAYS , { 'l', 't' }, { 0x00CD, 0, 0 }, { 0x0069, 0x0307, 0x0301 }, { 0x00CD, 0, 0 }, { 0x00ED, 0, 0 } Error: COMPILER_WARNING: [#def91] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:47:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 47 | "\x00\xcc\x00", 0, SCC_ALWAYS , { 'l', 't' }, { 0x00CC, 0, 0 }, { 0x0069, 0x0307, 0x0300 }, { 0x00CC, 0, 0 }, { 0x00EC, 0, 0 } # | ^~~~~~~~~~~~~~ # 45| "\x00\x69\x00", 1, SCC_ALWAYS , { 't', 'r' }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 } # 46| "\x00\x69\x01", 0, SCC_ALWAYS , { 'a', 'z' }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 } # 47|-> "\x00\xcc\x00", 0, SCC_ALWAYS , { 'l', 't' }, { 0x00CC, 0, 0 }, { 0x0069, 0x0307, 0x0300 }, { 0x00CC, 0, 0 }, { 0x00EC, 0, 0 } # 48| "\x00\xcd\x00", 0, SCC_ALWAYS , { 'l', 't' }, { 0x00CD, 0, 0 }, { 0x0069, 0x0307, 0x0301 }, { 0x00CD, 0, 0 }, { 0x00ED, 0, 0 } # 49| "\x00\xdf\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0053, 0x0053, 0 }, { 0x00DF, 0, 0 }, { 0x0053, 0x0073, 0 }, { 0x0073, 0x0073, 0 } Error: COMPILER_WARNING: [#def92] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:48:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 48 | "\x00\xcd\x00", 0, SCC_ALWAYS , { 'l', 't' }, { 0x00CD, 0, 0 }, { 0x0069, 0x0307, 0x0301 }, { 0x00CD, 0, 0 }, { 0x00ED, 0, 0 } # | ^~~~~~~~~~~~~~ # 46| "\x00\x69\x01", 0, SCC_ALWAYS , { 'a', 'z' }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 } # 47| "\x00\xcc\x00", 0, SCC_ALWAYS , { 'l', 't' }, { 0x00CC, 0, 0 }, { 0x0069, 0x0307, 0x0300 }, { 0x00CC, 0, 0 }, { 0x00EC, 0, 0 } # 48|-> "\x00\xcd\x00", 0, SCC_ALWAYS , { 'l', 't' }, { 0x00CD, 0, 0 }, { 0x0069, 0x0307, 0x0301 }, { 0x00CD, 0, 0 }, { 0x00ED, 0, 0 } # 49| "\x00\xdf\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0053, 0x0053, 0 }, { 0x00DF, 0, 0 }, { 0x0053, 0x0073, 0 }, { 0x0073, 0x0073, 0 } # 50| "\x01\x28\x00", 0, SCC_ALWAYS , { 'l', 't' }, { 0x0128, 0, 0 }, { 0x0069, 0x0307, 0x0303 }, { 0x0128, 0, 0 }, { 0x0129, 0, 0 } Error: COMPILER_WARNING: [#def93] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:49:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 49 | "\x00\xdf\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0053, 0x0053, 0 }, { 0x00DF, 0, 0 }, { 0x0053, 0x0073, 0 }, { 0x0073, 0x0073, 0 } # | ^~~~~~~~~~~~~~ # 47| "\x00\xcc\x00", 0, SCC_ALWAYS , { 'l', 't' }, { 0x00CC, 0, 0 }, { 0x0069, 0x0307, 0x0300 }, { 0x00CC, 0, 0 }, { 0x00EC, 0, 0 } # 48| "\x00\xcd\x00", 0, SCC_ALWAYS , { 'l', 't' }, { 0x00CD, 0, 0 }, { 0x0069, 0x0307, 0x0301 }, { 0x00CD, 0, 0 }, { 0x00ED, 0, 0 } # 49|-> "\x00\xdf\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0053, 0x0053, 0 }, { 0x00DF, 0, 0 }, { 0x0053, 0x0073, 0 }, { 0x0073, 0x0073, 0 } # 50| "\x01\x28\x00", 0, SCC_ALWAYS , { 'l', 't' }, { 0x0128, 0, 0 }, { 0x0069, 0x0307, 0x0303 }, { 0x0128, 0, 0 }, { 0x0129, 0, 0 } # 51| "\x01\x2e\x00", 0, SCC_MORE_ABOVE , { 'l', 't' }, { 0x012E, 0, 0 }, { 0x012F, 0x0307, 0 }, { 0x012E, 0, 0 }, { 0x012F, 0, 0 } Error: COMPILER_WARNING: [#def94] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:50:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 50 | "\x01\x28\x00", 0, SCC_ALWAYS , { 'l', 't' }, { 0x0128, 0, 0 }, { 0x0069, 0x0307, 0x0303 }, { 0x0128, 0, 0 }, { 0x0129, 0, 0 } # | ^~~~~~~~~~~ # 48| "\x00\xcd\x00", 0, SCC_ALWAYS , { 'l', 't' }, { 0x00CD, 0, 0 }, { 0x0069, 0x0307, 0x0301 }, { 0x00CD, 0, 0 }, { 0x00ED, 0, 0 } # 49| "\x00\xdf\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0053, 0x0053, 0 }, { 0x00DF, 0, 0 }, { 0x0053, 0x0073, 0 }, { 0x0073, 0x0073, 0 } # 50|-> "\x01\x28\x00", 0, SCC_ALWAYS , { 'l', 't' }, { 0x0128, 0, 0 }, { 0x0069, 0x0307, 0x0303 }, { 0x0128, 0, 0 }, { 0x0129, 0, 0 } # 51| "\x01\x2e\x00", 0, SCC_MORE_ABOVE , { 'l', 't' }, { 0x012E, 0, 0 }, { 0x012F, 0x0307, 0 }, { 0x012E, 0, 0 }, { 0x012F, 0, 0 } # 52| "\x01\x30\x00", 1, SCC_ALWAYS , { 't', 'r' }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 } Error: COMPILER_WARNING: [#def95] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:51:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 51 | "\x01\x2e\x00", 0, SCC_MORE_ABOVE , { 'l', 't' }, { 0x012E, 0, 0 }, { 0x012F, 0x0307, 0 }, { 0x012E, 0, 0 }, { 0x012F, 0, 0 } # | ^~~~~~~~~~~ # 49| "\x00\xdf\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0053, 0x0053, 0 }, { 0x00DF, 0, 0 }, { 0x0053, 0x0073, 0 }, { 0x0073, 0x0073, 0 } # 50| "\x01\x28\x00", 0, SCC_ALWAYS , { 'l', 't' }, { 0x0128, 0, 0 }, { 0x0069, 0x0307, 0x0303 }, { 0x0128, 0, 0 }, { 0x0129, 0, 0 } # 51|-> "\x01\x2e\x00", 0, SCC_MORE_ABOVE , { 'l', 't' }, { 0x012E, 0, 0 }, { 0x012F, 0x0307, 0 }, { 0x012E, 0, 0 }, { 0x012F, 0, 0 } # 52| "\x01\x30\x00", 1, SCC_ALWAYS , { 't', 'r' }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 } # 53| "\x01\x30\x01", 1, SCC_ALWAYS , { 'a', 'z' }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 } Error: COMPILER_WARNING: [#def96] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:52:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 52 | "\x01\x30\x00", 1, SCC_ALWAYS , { 't', 'r' }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 } # | ^~~~~~~~~~~ # 50| "\x01\x28\x00", 0, SCC_ALWAYS , { 'l', 't' }, { 0x0128, 0, 0 }, { 0x0069, 0x0307, 0x0303 }, { 0x0128, 0, 0 }, { 0x0129, 0, 0 } # 51| "\x01\x2e\x00", 0, SCC_MORE_ABOVE , { 'l', 't' }, { 0x012E, 0, 0 }, { 0x012F, 0x0307, 0 }, { 0x012E, 0, 0 }, { 0x012F, 0, 0 } # 52|-> "\x01\x30\x00", 1, SCC_ALWAYS , { 't', 'r' }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 } # 53| "\x01\x30\x01", 1, SCC_ALWAYS , { 'a', 'z' }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 } # 54| "\x01\x30\x02", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0130, 0, 0 }, { 0x0069, 0x0307, 0 }, { 0x0130, 0, 0 }, { 0x0069, 0x0307, 0 } Error: COMPILER_WARNING: [#def97] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:53:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 53 | "\x01\x30\x01", 1, SCC_ALWAYS , { 'a', 'z' }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 } # | ^~~~~~~~~~~ # 51| "\x01\x2e\x00", 0, SCC_MORE_ABOVE , { 'l', 't' }, { 0x012E, 0, 0 }, { 0x012F, 0x0307, 0 }, { 0x012E, 0, 0 }, { 0x012F, 0, 0 } # 52| "\x01\x30\x00", 1, SCC_ALWAYS , { 't', 'r' }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 } # 53|-> "\x01\x30\x01", 1, SCC_ALWAYS , { 'a', 'z' }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 } # 54| "\x01\x30\x02", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0130, 0, 0 }, { 0x0069, 0x0307, 0 }, { 0x0130, 0, 0 }, { 0x0069, 0x0307, 0 } # 55| "\x01\x49\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x02BC, 0x004E, 0 }, { 0x0149, 0, 0 }, { 0x02BC, 0x004E, 0 }, { 0x02BC, 0x006E, 0 } Error: COMPILER_WARNING: [#def98] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:54:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 54 | "\x01\x30\x02", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0130, 0, 0 }, { 0x0069, 0x0307, 0 }, { 0x0130, 0, 0 }, { 0x0069, 0x0307, 0 } # | ^~~~~~~~~~~ # 52| "\x01\x30\x00", 1, SCC_ALWAYS , { 't', 'r' }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 } # 53| "\x01\x30\x01", 1, SCC_ALWAYS , { 'a', 'z' }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 } # 54|-> "\x01\x30\x02", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0130, 0, 0 }, { 0x0069, 0x0307, 0 }, { 0x0130, 0, 0 }, { 0x0069, 0x0307, 0 } # 55| "\x01\x49\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x02BC, 0x004E, 0 }, { 0x0149, 0, 0 }, { 0x02BC, 0x004E, 0 }, { 0x02BC, 0x006E, 0 } # 56| "\x01\xf0\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x004A, 0x030C, 0 }, { 0x01F0, 0, 0 }, { 0x004A, 0x030C, 0 }, { 0x006A, 0x030C, 0 } Error: COMPILER_WARNING: [#def99] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:55:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 55 | "\x01\x49\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x02BC, 0x004E, 0 }, { 0x0149, 0, 0 }, { 0x02BC, 0x004E, 0 }, { 0x02BC, 0x006E, 0 } # | ^~~~~~~~~~~ # 53| "\x01\x30\x01", 1, SCC_ALWAYS , { 'a', 'z' }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 }, { 0x0130, 0, 0 }, { 0x0069, 0, 0 } # 54| "\x01\x30\x02", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0130, 0, 0 }, { 0x0069, 0x0307, 0 }, { 0x0130, 0, 0 }, { 0x0069, 0x0307, 0 } # 55|-> "\x01\x49\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x02BC, 0x004E, 0 }, { 0x0149, 0, 0 }, { 0x02BC, 0x004E, 0 }, { 0x02BC, 0x006E, 0 } # 56| "\x01\xf0\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x004A, 0x030C, 0 }, { 0x01F0, 0, 0 }, { 0x004A, 0x030C, 0 }, { 0x006A, 0x030C, 0 } # 57| "\x03\x07\x00", 1, SCC_AFTER_SOFT_DOTTED, { 'l', 't' }, { 0, 0, 0 }, { 0x0307, 0, 0 }, { 0, 0, 0 }, { 0x0307, 0, 0 } Error: COMPILER_WARNING: [#def100] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:56:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 56 | "\x01\xf0\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x004A, 0x030C, 0 }, { 0x01F0, 0, 0 }, { 0x004A, 0x030C, 0 }, { 0x006A, 0x030C, 0 } # | ^~~~~~~~~~~~~~ # 54| "\x01\x30\x02", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0130, 0, 0 }, { 0x0069, 0x0307, 0 }, { 0x0130, 0, 0 }, { 0x0069, 0x0307, 0 } # 55| "\x01\x49\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x02BC, 0x004E, 0 }, { 0x0149, 0, 0 }, { 0x02BC, 0x004E, 0 }, { 0x02BC, 0x006E, 0 } # 56|-> "\x01\xf0\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x004A, 0x030C, 0 }, { 0x01F0, 0, 0 }, { 0x004A, 0x030C, 0 }, { 0x006A, 0x030C, 0 } # 57| "\x03\x07\x00", 1, SCC_AFTER_SOFT_DOTTED, { 'l', 't' }, { 0, 0, 0 }, { 0x0307, 0, 0 }, { 0, 0, 0 }, { 0x0307, 0, 0 } # 58| "\x03\x07\x01", 1, SCC_AFTER_I , { 't', 'r' }, { 0x0307, 0, 0 }, { 0, 0, 0 }, { 0x0307, 0, 0 }, { 0x0307, 0, 0 } Error: COMPILER_WARNING: [#def101] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:57:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 57 | "\x03\x07\x00", 1, SCC_AFTER_SOFT_DOTTED, { 'l', 't' }, { 0, 0, 0 }, { 0x0307, 0, 0 }, { 0, 0, 0 }, { 0x0307, 0, 0 } # | ^~~~~~~~~~~~~~ # 55| "\x01\x49\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x02BC, 0x004E, 0 }, { 0x0149, 0, 0 }, { 0x02BC, 0x004E, 0 }, { 0x02BC, 0x006E, 0 } # 56| "\x01\xf0\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x004A, 0x030C, 0 }, { 0x01F0, 0, 0 }, { 0x004A, 0x030C, 0 }, { 0x006A, 0x030C, 0 } # 57|-> "\x03\x07\x00", 1, SCC_AFTER_SOFT_DOTTED, { 'l', 't' }, { 0, 0, 0 }, { 0x0307, 0, 0 }, { 0, 0, 0 }, { 0x0307, 0, 0 } # 58| "\x03\x07\x01", 1, SCC_AFTER_I , { 't', 'r' }, { 0x0307, 0, 0 }, { 0, 0, 0 }, { 0x0307, 0, 0 }, { 0x0307, 0, 0 } # 59| "\x03\x07\x02", 0, SCC_AFTER_I , { 'a', 'z' }, { 0x0307, 0, 0 }, { 0, 0, 0 }, { 0x0307, 0, 0 }, { 0x0307, 0, 0 } Error: COMPILER_WARNING: [#def102] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:58:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 58 | "\x03\x07\x01", 1, SCC_AFTER_I , { 't', 'r' }, { 0x0307, 0, 0 }, { 0, 0, 0 }, { 0x0307, 0, 0 }, { 0x0307, 0, 0 } # | ^~~~~~~~~~~~~~ # 56| "\x01\xf0\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x004A, 0x030C, 0 }, { 0x01F0, 0, 0 }, { 0x004A, 0x030C, 0 }, { 0x006A, 0x030C, 0 } # 57| "\x03\x07\x00", 1, SCC_AFTER_SOFT_DOTTED, { 'l', 't' }, { 0, 0, 0 }, { 0x0307, 0, 0 }, { 0, 0, 0 }, { 0x0307, 0, 0 } # 58|-> "\x03\x07\x01", 1, SCC_AFTER_I , { 't', 'r' }, { 0x0307, 0, 0 }, { 0, 0, 0 }, { 0x0307, 0, 0 }, { 0x0307, 0, 0 } # 59| "\x03\x07\x02", 0, SCC_AFTER_I , { 'a', 'z' }, { 0x0307, 0, 0 }, { 0, 0, 0 }, { 0x0307, 0, 0 }, { 0x0307, 0, 0 } # 60| "\x03\x90\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0399, 0x0308, 0x0301 }, { 0x0390, 0, 0 }, { 0x0399, 0x0308, 0x0301 }, { 0x03B9, 0x0308, 0x0301 } Error: COMPILER_WARNING: [#def103] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:59:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 59 | "\x03\x07\x02", 0, SCC_AFTER_I , { 'a', 'z' }, { 0x0307, 0, 0 }, { 0, 0, 0 }, { 0x0307, 0, 0 }, { 0x0307, 0, 0 } # | ^~~~~~~~~~~~~~ # 57| "\x03\x07\x00", 1, SCC_AFTER_SOFT_DOTTED, { 'l', 't' }, { 0, 0, 0 }, { 0x0307, 0, 0 }, { 0, 0, 0 }, { 0x0307, 0, 0 } # 58| "\x03\x07\x01", 1, SCC_AFTER_I , { 't', 'r' }, { 0x0307, 0, 0 }, { 0, 0, 0 }, { 0x0307, 0, 0 }, { 0x0307, 0, 0 } # 59|-> "\x03\x07\x02", 0, SCC_AFTER_I , { 'a', 'z' }, { 0x0307, 0, 0 }, { 0, 0, 0 }, { 0x0307, 0, 0 }, { 0x0307, 0, 0 } # 60| "\x03\x90\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0399, 0x0308, 0x0301 }, { 0x0390, 0, 0 }, { 0x0399, 0x0308, 0x0301 }, { 0x03B9, 0x0308, 0x0301 } # 61| "\x03\xa3\x00", 0, SCC_FINAL_SIGMA , { '\0', '\0' }, { 0x03A3, 0, 0 }, { 0x03C2, 0, 0 }, { 0x03A3, 0, 0 }, { 0x03C3, 0, 0 } Error: COMPILER_WARNING: [#def104] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:60:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 60 | "\x03\x90\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0399, 0x0308, 0x0301 }, { 0x0390, 0, 0 }, { 0x0399, 0x0308, 0x0301 }, { 0x03B9, 0x0308, 0x0301 } # | ^~~~~~~~~~~~~~ # 58| "\x03\x07\x01", 1, SCC_AFTER_I , { 't', 'r' }, { 0x0307, 0, 0 }, { 0, 0, 0 }, { 0x0307, 0, 0 }, { 0x0307, 0, 0 } # 59| "\x03\x07\x02", 0, SCC_AFTER_I , { 'a', 'z' }, { 0x0307, 0, 0 }, { 0, 0, 0 }, { 0x0307, 0, 0 }, { 0x0307, 0, 0 } # 60|-> "\x03\x90\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0399, 0x0308, 0x0301 }, { 0x0390, 0, 0 }, { 0x0399, 0x0308, 0x0301 }, { 0x03B9, 0x0308, 0x0301 } # 61| "\x03\xa3\x00", 0, SCC_FINAL_SIGMA , { '\0', '\0' }, { 0x03A3, 0, 0 }, { 0x03C2, 0, 0 }, { 0x03A3, 0, 0 }, { 0x03C3, 0, 0 } # 62| "\x03\xb0\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0308, 0x0301 }, { 0x03B0, 0, 0 }, { 0x03A5, 0x0308, 0x0301 }, { 0x03C5, 0x0308, 0x0301 } Error: COMPILER_WARNING: [#def105] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:61:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 61 | "\x03\xa3\x00", 0, SCC_FINAL_SIGMA , { '\0', '\0' }, { 0x03A3, 0, 0 }, { 0x03C2, 0, 0 }, { 0x03A3, 0, 0 }, { 0x03C3, 0, 0 } # | ^~~~~~~~~~~~~~ # 59| "\x03\x07\x02", 0, SCC_AFTER_I , { 'a', 'z' }, { 0x0307, 0, 0 }, { 0, 0, 0 }, { 0x0307, 0, 0 }, { 0x0307, 0, 0 } # 60| "\x03\x90\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0399, 0x0308, 0x0301 }, { 0x0390, 0, 0 }, { 0x0399, 0x0308, 0x0301 }, { 0x03B9, 0x0308, 0x0301 } # 61|-> "\x03\xa3\x00", 0, SCC_FINAL_SIGMA , { '\0', '\0' }, { 0x03A3, 0, 0 }, { 0x03C2, 0, 0 }, { 0x03A3, 0, 0 }, { 0x03C3, 0, 0 } # 62| "\x03\xb0\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0308, 0x0301 }, { 0x03B0, 0, 0 }, { 0x03A5, 0x0308, 0x0301 }, { 0x03C5, 0x0308, 0x0301 } # 63| "\x05\x87\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0535, 0x0552, 0 }, { 0x0587, 0, 0 }, { 0x0535, 0x0582, 0 }, { 0x0565, 0x0582, 0 } Error: COMPILER_WARNING: [#def106] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:62:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 62 | "\x03\xb0\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0308, 0x0301 }, { 0x03B0, 0, 0 }, { 0x03A5, 0x0308, 0x0301 }, { 0x03C5, 0x0308, 0x0301 } # | ^~~~~~~~~~~~~~ # 60| "\x03\x90\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0399, 0x0308, 0x0301 }, { 0x0390, 0, 0 }, { 0x0399, 0x0308, 0x0301 }, { 0x03B9, 0x0308, 0x0301 } # 61| "\x03\xa3\x00", 0, SCC_FINAL_SIGMA , { '\0', '\0' }, { 0x03A3, 0, 0 }, { 0x03C2, 0, 0 }, { 0x03A3, 0, 0 }, { 0x03C3, 0, 0 } # 62|-> "\x03\xb0\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0308, 0x0301 }, { 0x03B0, 0, 0 }, { 0x03A5, 0x0308, 0x0301 }, { 0x03C5, 0x0308, 0x0301 } # 63| "\x05\x87\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0535, 0x0552, 0 }, { 0x0587, 0, 0 }, { 0x0535, 0x0582, 0 }, { 0x0565, 0x0582, 0 } # 64| "\x1e\x96\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0048, 0x0331, 0 }, { 0x1E96, 0, 0 }, { 0x0048, 0x0331, 0 }, { 0x0068, 0x0331, 0 } Error: COMPILER_WARNING: [#def107] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:63:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 63 | "\x05\x87\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0535, 0x0552, 0 }, { 0x0587, 0, 0 }, { 0x0535, 0x0582, 0 }, { 0x0565, 0x0582, 0 } # | ^~~~~~~~~~~~~~ # 61| "\x03\xa3\x00", 0, SCC_FINAL_SIGMA , { '\0', '\0' }, { 0x03A3, 0, 0 }, { 0x03C2, 0, 0 }, { 0x03A3, 0, 0 }, { 0x03C3, 0, 0 } # 62| "\x03\xb0\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0308, 0x0301 }, { 0x03B0, 0, 0 }, { 0x03A5, 0x0308, 0x0301 }, { 0x03C5, 0x0308, 0x0301 } # 63|-> "\x05\x87\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0535, 0x0552, 0 }, { 0x0587, 0, 0 }, { 0x0535, 0x0582, 0 }, { 0x0565, 0x0582, 0 } # 64| "\x1e\x96\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0048, 0x0331, 0 }, { 0x1E96, 0, 0 }, { 0x0048, 0x0331, 0 }, { 0x0068, 0x0331, 0 } # 65| "\x1e\x97\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0054, 0x0308, 0 }, { 0x1E97, 0, 0 }, { 0x0054, 0x0308, 0 }, { 0x0074, 0x0308, 0 } Error: COMPILER_WARNING: [#def108] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:64:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 64 | "\x1e\x96\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0048, 0x0331, 0 }, { 0x1E96, 0, 0 }, { 0x0048, 0x0331, 0 }, { 0x0068, 0x0331, 0 } # | ^~~~~~~~~~~~~~ # 62| "\x03\xb0\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0308, 0x0301 }, { 0x03B0, 0, 0 }, { 0x03A5, 0x0308, 0x0301 }, { 0x03C5, 0x0308, 0x0301 } # 63| "\x05\x87\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0535, 0x0552, 0 }, { 0x0587, 0, 0 }, { 0x0535, 0x0582, 0 }, { 0x0565, 0x0582, 0 } # 64|-> "\x1e\x96\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0048, 0x0331, 0 }, { 0x1E96, 0, 0 }, { 0x0048, 0x0331, 0 }, { 0x0068, 0x0331, 0 } # 65| "\x1e\x97\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0054, 0x0308, 0 }, { 0x1E97, 0, 0 }, { 0x0054, 0x0308, 0 }, { 0x0074, 0x0308, 0 } # 66| "\x1e\x98\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0057, 0x030A, 0 }, { 0x1E98, 0, 0 }, { 0x0057, 0x030A, 0 }, { 0x0077, 0x030A, 0 } Error: COMPILER_WARNING: [#def109] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:65:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 65 | "\x1e\x97\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0054, 0x0308, 0 }, { 0x1E97, 0, 0 }, { 0x0054, 0x0308, 0 }, { 0x0074, 0x0308, 0 } # | ^~~~~~~~~~~~~~ # 63| "\x05\x87\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0535, 0x0552, 0 }, { 0x0587, 0, 0 }, { 0x0535, 0x0582, 0 }, { 0x0565, 0x0582, 0 } # 64| "\x1e\x96\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0048, 0x0331, 0 }, { 0x1E96, 0, 0 }, { 0x0048, 0x0331, 0 }, { 0x0068, 0x0331, 0 } # 65|-> "\x1e\x97\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0054, 0x0308, 0 }, { 0x1E97, 0, 0 }, { 0x0054, 0x0308, 0 }, { 0x0074, 0x0308, 0 } # 66| "\x1e\x98\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0057, 0x030A, 0 }, { 0x1E98, 0, 0 }, { 0x0057, 0x030A, 0 }, { 0x0077, 0x030A, 0 } # 67| "\x1e\x99\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0059, 0x030A, 0 }, { 0x1E99, 0, 0 }, { 0x0059, 0x030A, 0 }, { 0x0079, 0x030A, 0 } Error: COMPILER_WARNING: [#def110] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:66:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 66 | "\x1e\x98\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0057, 0x030A, 0 }, { 0x1E98, 0, 0 }, { 0x0057, 0x030A, 0 }, { 0x0077, 0x030A, 0 } # | ^~~~~~~~~~~~~~ # 64| "\x1e\x96\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0048, 0x0331, 0 }, { 0x1E96, 0, 0 }, { 0x0048, 0x0331, 0 }, { 0x0068, 0x0331, 0 } # 65| "\x1e\x97\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0054, 0x0308, 0 }, { 0x1E97, 0, 0 }, { 0x0054, 0x0308, 0 }, { 0x0074, 0x0308, 0 } # 66|-> "\x1e\x98\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0057, 0x030A, 0 }, { 0x1E98, 0, 0 }, { 0x0057, 0x030A, 0 }, { 0x0077, 0x030A, 0 } # 67| "\x1e\x99\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0059, 0x030A, 0 }, { 0x1E99, 0, 0 }, { 0x0059, 0x030A, 0 }, { 0x0079, 0x030A, 0 } # 68| "\x1e\x9a\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0041, 0x02BE, 0 }, { 0x1E9A, 0, 0 }, { 0x0041, 0x02BE, 0 }, { 0x0061, 0x02BE, 0 } Error: COMPILER_WARNING: [#def111] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:67:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 67 | "\x1e\x99\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0059, 0x030A, 0 }, { 0x1E99, 0, 0 }, { 0x0059, 0x030A, 0 }, { 0x0079, 0x030A, 0 } # | ^~~~~~~~~~~~~~ # 65| "\x1e\x97\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0054, 0x0308, 0 }, { 0x1E97, 0, 0 }, { 0x0054, 0x0308, 0 }, { 0x0074, 0x0308, 0 } # 66| "\x1e\x98\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0057, 0x030A, 0 }, { 0x1E98, 0, 0 }, { 0x0057, 0x030A, 0 }, { 0x0077, 0x030A, 0 } # 67|-> "\x1e\x99\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0059, 0x030A, 0 }, { 0x1E99, 0, 0 }, { 0x0059, 0x030A, 0 }, { 0x0079, 0x030A, 0 } # 68| "\x1e\x9a\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0041, 0x02BE, 0 }, { 0x1E9A, 0, 0 }, { 0x0041, 0x02BE, 0 }, { 0x0061, 0x02BE, 0 } # 69| "\x1e\x9e\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1E9E, 0, 0 }, { 0x00DF, 0, 0 }, { 0x1E9E, 0, 0 }, { 0x0073, 0x0073, 0 } Error: COMPILER_WARNING: [#def112] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:68:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 68 | "\x1e\x9a\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0041, 0x02BE, 0 }, { 0x1E9A, 0, 0 }, { 0x0041, 0x02BE, 0 }, { 0x0061, 0x02BE, 0 } # | ^~~~~~~~~~~~~~ # 66| "\x1e\x98\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0057, 0x030A, 0 }, { 0x1E98, 0, 0 }, { 0x0057, 0x030A, 0 }, { 0x0077, 0x030A, 0 } # 67| "\x1e\x99\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0059, 0x030A, 0 }, { 0x1E99, 0, 0 }, { 0x0059, 0x030A, 0 }, { 0x0079, 0x030A, 0 } # 68|-> "\x1e\x9a\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0041, 0x02BE, 0 }, { 0x1E9A, 0, 0 }, { 0x0041, 0x02BE, 0 }, { 0x0061, 0x02BE, 0 } # 69| "\x1e\x9e\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1E9E, 0, 0 }, { 0x00DF, 0, 0 }, { 0x1E9E, 0, 0 }, { 0x0073, 0x0073, 0 } # 70| "\x1f\x50\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0313, 0 }, { 0x1F50, 0, 0 }, { 0x03A5, 0x0313, 0 }, { 0x03C5, 0x0313, 0 } Error: COMPILER_WARNING: [#def113] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:69:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 69 | "\x1e\x9e\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1E9E, 0, 0 }, { 0x00DF, 0, 0 }, { 0x1E9E, 0, 0 }, { 0x0073, 0x0073, 0 } # | ^~~~~~~~~~~~~~ # 67| "\x1e\x99\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0059, 0x030A, 0 }, { 0x1E99, 0, 0 }, { 0x0059, 0x030A, 0 }, { 0x0079, 0x030A, 0 } # 68| "\x1e\x9a\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0041, 0x02BE, 0 }, { 0x1E9A, 0, 0 }, { 0x0041, 0x02BE, 0 }, { 0x0061, 0x02BE, 0 } # 69|-> "\x1e\x9e\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1E9E, 0, 0 }, { 0x00DF, 0, 0 }, { 0x1E9E, 0, 0 }, { 0x0073, 0x0073, 0 } # 70| "\x1f\x50\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0313, 0 }, { 0x1F50, 0, 0 }, { 0x03A5, 0x0313, 0 }, { 0x03C5, 0x0313, 0 } # 71| "\x1f\x52\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0313, 0x0300 }, { 0x1F52, 0, 0 }, { 0x03A5, 0x0313, 0x0300 }, { 0x03C5, 0x0313, 0x0300 } Error: COMPILER_WARNING: [#def114] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:70:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 70 | "\x1f\x50\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0313, 0 }, { 0x1F50, 0, 0 }, { 0x03A5, 0x0313, 0 }, { 0x03C5, 0x0313, 0 } # | ^~~~~~~~~~~ # 68| "\x1e\x9a\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0041, 0x02BE, 0 }, { 0x1E9A, 0, 0 }, { 0x0041, 0x02BE, 0 }, { 0x0061, 0x02BE, 0 } # 69| "\x1e\x9e\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1E9E, 0, 0 }, { 0x00DF, 0, 0 }, { 0x1E9E, 0, 0 }, { 0x0073, 0x0073, 0 } # 70|-> "\x1f\x50\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0313, 0 }, { 0x1F50, 0, 0 }, { 0x03A5, 0x0313, 0 }, { 0x03C5, 0x0313, 0 } # 71| "\x1f\x52\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0313, 0x0300 }, { 0x1F52, 0, 0 }, { 0x03A5, 0x0313, 0x0300 }, { 0x03C5, 0x0313, 0x0300 } # 72| "\x1f\x54\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0313, 0x0301 }, { 0x1F54, 0, 0 }, { 0x03A5, 0x0313, 0x0301 }, { 0x03C5, 0x0313, 0x0301 } Error: COMPILER_WARNING: [#def115] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:71:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 71 | "\x1f\x52\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0313, 0x0300 }, { 0x1F52, 0, 0 }, { 0x03A5, 0x0313, 0x0300 }, { 0x03C5, 0x0313, 0x0300 } # | ^~~~~~~~~~~ # 69| "\x1e\x9e\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1E9E, 0, 0 }, { 0x00DF, 0, 0 }, { 0x1E9E, 0, 0 }, { 0x0073, 0x0073, 0 } # 70| "\x1f\x50\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0313, 0 }, { 0x1F50, 0, 0 }, { 0x03A5, 0x0313, 0 }, { 0x03C5, 0x0313, 0 } # 71|-> "\x1f\x52\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0313, 0x0300 }, { 0x1F52, 0, 0 }, { 0x03A5, 0x0313, 0x0300 }, { 0x03C5, 0x0313, 0x0300 } # 72| "\x1f\x54\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0313, 0x0301 }, { 0x1F54, 0, 0 }, { 0x03A5, 0x0313, 0x0301 }, { 0x03C5, 0x0313, 0x0301 } # 73| "\x1f\x56\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0313, 0x0342 }, { 0x1F56, 0, 0 }, { 0x03A5, 0x0313, 0x0342 }, { 0x03C5, 0x0313, 0x0342 } Error: COMPILER_WARNING: [#def116] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:72:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 72 | "\x1f\x54\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0313, 0x0301 }, { 0x1F54, 0, 0 }, { 0x03A5, 0x0313, 0x0301 }, { 0x03C5, 0x0313, 0x0301 } # | ^~~~~~~~~~~ # 70| "\x1f\x50\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0313, 0 }, { 0x1F50, 0, 0 }, { 0x03A5, 0x0313, 0 }, { 0x03C5, 0x0313, 0 } # 71| "\x1f\x52\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0313, 0x0300 }, { 0x1F52, 0, 0 }, { 0x03A5, 0x0313, 0x0300 }, { 0x03C5, 0x0313, 0x0300 } # 72|-> "\x1f\x54\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0313, 0x0301 }, { 0x1F54, 0, 0 }, { 0x03A5, 0x0313, 0x0301 }, { 0x03C5, 0x0313, 0x0301 } # 73| "\x1f\x56\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0313, 0x0342 }, { 0x1F56, 0, 0 }, { 0x03A5, 0x0313, 0x0342 }, { 0x03C5, 0x0313, 0x0342 } # 74| "\x1f\x80\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F08, 0x0399, 0 }, { 0x1F80, 0, 0 }, { 0x1F88, 0, 0 }, { 0x1F00, 0x03B9, 0 } Error: COMPILER_WARNING: [#def117] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:73:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 73 | "\x1f\x56\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0313, 0x0342 }, { 0x1F56, 0, 0 }, { 0x03A5, 0x0313, 0x0342 }, { 0x03C5, 0x0313, 0x0342 } # | ^~~~~~~~~~~ # 71| "\x1f\x52\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0313, 0x0300 }, { 0x1F52, 0, 0 }, { 0x03A5, 0x0313, 0x0300 }, { 0x03C5, 0x0313, 0x0300 } # 72| "\x1f\x54\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0313, 0x0301 }, { 0x1F54, 0, 0 }, { 0x03A5, 0x0313, 0x0301 }, { 0x03C5, 0x0313, 0x0301 } # 73|-> "\x1f\x56\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0313, 0x0342 }, { 0x1F56, 0, 0 }, { 0x03A5, 0x0313, 0x0342 }, { 0x03C5, 0x0313, 0x0342 } # 74| "\x1f\x80\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F08, 0x0399, 0 }, { 0x1F80, 0, 0 }, { 0x1F88, 0, 0 }, { 0x1F00, 0x03B9, 0 } # 75| "\x1f\x81\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F09, 0x0399, 0 }, { 0x1F81, 0, 0 }, { 0x1F89, 0, 0 }, { 0x1F01, 0x03B9, 0 } Error: COMPILER_WARNING: [#def118] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:74:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 74 | "\x1f\x80\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F08, 0x0399, 0 }, { 0x1F80, 0, 0 }, { 0x1F88, 0, 0 }, { 0x1F00, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 72| "\x1f\x54\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0313, 0x0301 }, { 0x1F54, 0, 0 }, { 0x03A5, 0x0313, 0x0301 }, { 0x03C5, 0x0313, 0x0301 } # 73| "\x1f\x56\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0313, 0x0342 }, { 0x1F56, 0, 0 }, { 0x03A5, 0x0313, 0x0342 }, { 0x03C5, 0x0313, 0x0342 } # 74|-> "\x1f\x80\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F08, 0x0399, 0 }, { 0x1F80, 0, 0 }, { 0x1F88, 0, 0 }, { 0x1F00, 0x03B9, 0 } # 75| "\x1f\x81\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F09, 0x0399, 0 }, { 0x1F81, 0, 0 }, { 0x1F89, 0, 0 }, { 0x1F01, 0x03B9, 0 } # 76| "\x1f\x82\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0A, 0x0399, 0 }, { 0x1F82, 0, 0 }, { 0x1F8A, 0, 0 }, { 0x1F02, 0x03B9, 0 } Error: COMPILER_WARNING: [#def119] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:75:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 75 | "\x1f\x81\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F09, 0x0399, 0 }, { 0x1F81, 0, 0 }, { 0x1F89, 0, 0 }, { 0x1F01, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 73| "\x1f\x56\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0313, 0x0342 }, { 0x1F56, 0, 0 }, { 0x03A5, 0x0313, 0x0342 }, { 0x03C5, 0x0313, 0x0342 } # 74| "\x1f\x80\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F08, 0x0399, 0 }, { 0x1F80, 0, 0 }, { 0x1F88, 0, 0 }, { 0x1F00, 0x03B9, 0 } # 75|-> "\x1f\x81\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F09, 0x0399, 0 }, { 0x1F81, 0, 0 }, { 0x1F89, 0, 0 }, { 0x1F01, 0x03B9, 0 } # 76| "\x1f\x82\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0A, 0x0399, 0 }, { 0x1F82, 0, 0 }, { 0x1F8A, 0, 0 }, { 0x1F02, 0x03B9, 0 } # 77| "\x1f\x83\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0B, 0x0399, 0 }, { 0x1F83, 0, 0 }, { 0x1F8B, 0, 0 }, { 0x1F03, 0x03B9, 0 } Error: COMPILER_WARNING: [#def120] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:76:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 76 | "\x1f\x82\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0A, 0x0399, 0 }, { 0x1F82, 0, 0 }, { 0x1F8A, 0, 0 }, { 0x1F02, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 74| "\x1f\x80\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F08, 0x0399, 0 }, { 0x1F80, 0, 0 }, { 0x1F88, 0, 0 }, { 0x1F00, 0x03B9, 0 } # 75| "\x1f\x81\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F09, 0x0399, 0 }, { 0x1F81, 0, 0 }, { 0x1F89, 0, 0 }, { 0x1F01, 0x03B9, 0 } # 76|-> "\x1f\x82\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0A, 0x0399, 0 }, { 0x1F82, 0, 0 }, { 0x1F8A, 0, 0 }, { 0x1F02, 0x03B9, 0 } # 77| "\x1f\x83\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0B, 0x0399, 0 }, { 0x1F83, 0, 0 }, { 0x1F8B, 0, 0 }, { 0x1F03, 0x03B9, 0 } # 78| "\x1f\x84\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0C, 0x0399, 0 }, { 0x1F84, 0, 0 }, { 0x1F8C, 0, 0 }, { 0x1F04, 0x03B9, 0 } Error: COMPILER_WARNING: [#def121] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:77:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 77 | "\x1f\x83\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0B, 0x0399, 0 }, { 0x1F83, 0, 0 }, { 0x1F8B, 0, 0 }, { 0x1F03, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 75| "\x1f\x81\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F09, 0x0399, 0 }, { 0x1F81, 0, 0 }, { 0x1F89, 0, 0 }, { 0x1F01, 0x03B9, 0 } # 76| "\x1f\x82\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0A, 0x0399, 0 }, { 0x1F82, 0, 0 }, { 0x1F8A, 0, 0 }, { 0x1F02, 0x03B9, 0 } # 77|-> "\x1f\x83\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0B, 0x0399, 0 }, { 0x1F83, 0, 0 }, { 0x1F8B, 0, 0 }, { 0x1F03, 0x03B9, 0 } # 78| "\x1f\x84\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0C, 0x0399, 0 }, { 0x1F84, 0, 0 }, { 0x1F8C, 0, 0 }, { 0x1F04, 0x03B9, 0 } # 79| "\x1f\x85\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0D, 0x0399, 0 }, { 0x1F85, 0, 0 }, { 0x1F8D, 0, 0 }, { 0x1F05, 0x03B9, 0 } Error: COMPILER_WARNING: [#def122] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:78:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 78 | "\x1f\x84\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0C, 0x0399, 0 }, { 0x1F84, 0, 0 }, { 0x1F8C, 0, 0 }, { 0x1F04, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 76| "\x1f\x82\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0A, 0x0399, 0 }, { 0x1F82, 0, 0 }, { 0x1F8A, 0, 0 }, { 0x1F02, 0x03B9, 0 } # 77| "\x1f\x83\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0B, 0x0399, 0 }, { 0x1F83, 0, 0 }, { 0x1F8B, 0, 0 }, { 0x1F03, 0x03B9, 0 } # 78|-> "\x1f\x84\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0C, 0x0399, 0 }, { 0x1F84, 0, 0 }, { 0x1F8C, 0, 0 }, { 0x1F04, 0x03B9, 0 } # 79| "\x1f\x85\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0D, 0x0399, 0 }, { 0x1F85, 0, 0 }, { 0x1F8D, 0, 0 }, { 0x1F05, 0x03B9, 0 } # 80| "\x1f\x86\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0E, 0x0399, 0 }, { 0x1F86, 0, 0 }, { 0x1F8E, 0, 0 }, { 0x1F06, 0x03B9, 0 } Error: COMPILER_WARNING: [#def123] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:79:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 79 | "\x1f\x85\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0D, 0x0399, 0 }, { 0x1F85, 0, 0 }, { 0x1F8D, 0, 0 }, { 0x1F05, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 77| "\x1f\x83\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0B, 0x0399, 0 }, { 0x1F83, 0, 0 }, { 0x1F8B, 0, 0 }, { 0x1F03, 0x03B9, 0 } # 78| "\x1f\x84\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0C, 0x0399, 0 }, { 0x1F84, 0, 0 }, { 0x1F8C, 0, 0 }, { 0x1F04, 0x03B9, 0 } # 79|-> "\x1f\x85\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0D, 0x0399, 0 }, { 0x1F85, 0, 0 }, { 0x1F8D, 0, 0 }, { 0x1F05, 0x03B9, 0 } # 80| "\x1f\x86\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0E, 0x0399, 0 }, { 0x1F86, 0, 0 }, { 0x1F8E, 0, 0 }, { 0x1F06, 0x03B9, 0 } # 81| "\x1f\x87\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0F, 0x0399, 0 }, { 0x1F87, 0, 0 }, { 0x1F8F, 0, 0 }, { 0x1F07, 0x03B9, 0 } Error: COMPILER_WARNING: [#def124] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:80:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 80 | "\x1f\x86\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0E, 0x0399, 0 }, { 0x1F86, 0, 0 }, { 0x1F8E, 0, 0 }, { 0x1F06, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 78| "\x1f\x84\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0C, 0x0399, 0 }, { 0x1F84, 0, 0 }, { 0x1F8C, 0, 0 }, { 0x1F04, 0x03B9, 0 } # 79| "\x1f\x85\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0D, 0x0399, 0 }, { 0x1F85, 0, 0 }, { 0x1F8D, 0, 0 }, { 0x1F05, 0x03B9, 0 } # 80|-> "\x1f\x86\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0E, 0x0399, 0 }, { 0x1F86, 0, 0 }, { 0x1F8E, 0, 0 }, { 0x1F06, 0x03B9, 0 } # 81| "\x1f\x87\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0F, 0x0399, 0 }, { 0x1F87, 0, 0 }, { 0x1F8F, 0, 0 }, { 0x1F07, 0x03B9, 0 } # 82| "\x1f\x88\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F08, 0x0399, 0 }, { 0x1F80, 0, 0 }, { 0x1F88, 0, 0 }, { 0x1F00, 0x03B9, 0 } Error: COMPILER_WARNING: [#def125] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:81:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 81 | "\x1f\x87\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0F, 0x0399, 0 }, { 0x1F87, 0, 0 }, { 0x1F8F, 0, 0 }, { 0x1F07, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 79| "\x1f\x85\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0D, 0x0399, 0 }, { 0x1F85, 0, 0 }, { 0x1F8D, 0, 0 }, { 0x1F05, 0x03B9, 0 } # 80| "\x1f\x86\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0E, 0x0399, 0 }, { 0x1F86, 0, 0 }, { 0x1F8E, 0, 0 }, { 0x1F06, 0x03B9, 0 } # 81|-> "\x1f\x87\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0F, 0x0399, 0 }, { 0x1F87, 0, 0 }, { 0x1F8F, 0, 0 }, { 0x1F07, 0x03B9, 0 } # 82| "\x1f\x88\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F08, 0x0399, 0 }, { 0x1F80, 0, 0 }, { 0x1F88, 0, 0 }, { 0x1F00, 0x03B9, 0 } # 83| "\x1f\x89\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F09, 0x0399, 0 }, { 0x1F81, 0, 0 }, { 0x1F89, 0, 0 }, { 0x1F01, 0x03B9, 0 } Error: COMPILER_WARNING: [#def126] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:82:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 82 | "\x1f\x88\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F08, 0x0399, 0 }, { 0x1F80, 0, 0 }, { 0x1F88, 0, 0 }, { 0x1F00, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 80| "\x1f\x86\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0E, 0x0399, 0 }, { 0x1F86, 0, 0 }, { 0x1F8E, 0, 0 }, { 0x1F06, 0x03B9, 0 } # 81| "\x1f\x87\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0F, 0x0399, 0 }, { 0x1F87, 0, 0 }, { 0x1F8F, 0, 0 }, { 0x1F07, 0x03B9, 0 } # 82|-> "\x1f\x88\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F08, 0x0399, 0 }, { 0x1F80, 0, 0 }, { 0x1F88, 0, 0 }, { 0x1F00, 0x03B9, 0 } # 83| "\x1f\x89\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F09, 0x0399, 0 }, { 0x1F81, 0, 0 }, { 0x1F89, 0, 0 }, { 0x1F01, 0x03B9, 0 } # 84| "\x1f\x8a\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0A, 0x0399, 0 }, { 0x1F82, 0, 0 }, { 0x1F8A, 0, 0 }, { 0x1F02, 0x03B9, 0 } Error: COMPILER_WARNING: [#def127] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:83:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 83 | "\x1f\x89\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F09, 0x0399, 0 }, { 0x1F81, 0, 0 }, { 0x1F89, 0, 0 }, { 0x1F01, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 81| "\x1f\x87\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0F, 0x0399, 0 }, { 0x1F87, 0, 0 }, { 0x1F8F, 0, 0 }, { 0x1F07, 0x03B9, 0 } # 82| "\x1f\x88\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F08, 0x0399, 0 }, { 0x1F80, 0, 0 }, { 0x1F88, 0, 0 }, { 0x1F00, 0x03B9, 0 } # 83|-> "\x1f\x89\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F09, 0x0399, 0 }, { 0x1F81, 0, 0 }, { 0x1F89, 0, 0 }, { 0x1F01, 0x03B9, 0 } # 84| "\x1f\x8a\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0A, 0x0399, 0 }, { 0x1F82, 0, 0 }, { 0x1F8A, 0, 0 }, { 0x1F02, 0x03B9, 0 } # 85| "\x1f\x8b\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0B, 0x0399, 0 }, { 0x1F83, 0, 0 }, { 0x1F8B, 0, 0 }, { 0x1F03, 0x03B9, 0 } Error: COMPILER_WARNING: [#def128] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:84:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 84 | "\x1f\x8a\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0A, 0x0399, 0 }, { 0x1F82, 0, 0 }, { 0x1F8A, 0, 0 }, { 0x1F02, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 82| "\x1f\x88\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F08, 0x0399, 0 }, { 0x1F80, 0, 0 }, { 0x1F88, 0, 0 }, { 0x1F00, 0x03B9, 0 } # 83| "\x1f\x89\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F09, 0x0399, 0 }, { 0x1F81, 0, 0 }, { 0x1F89, 0, 0 }, { 0x1F01, 0x03B9, 0 } # 84|-> "\x1f\x8a\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0A, 0x0399, 0 }, { 0x1F82, 0, 0 }, { 0x1F8A, 0, 0 }, { 0x1F02, 0x03B9, 0 } # 85| "\x1f\x8b\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0B, 0x0399, 0 }, { 0x1F83, 0, 0 }, { 0x1F8B, 0, 0 }, { 0x1F03, 0x03B9, 0 } # 86| "\x1f\x8c\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0C, 0x0399, 0 }, { 0x1F84, 0, 0 }, { 0x1F8C, 0, 0 }, { 0x1F04, 0x03B9, 0 } Error: COMPILER_WARNING: [#def129] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:85:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 85 | "\x1f\x8b\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0B, 0x0399, 0 }, { 0x1F83, 0, 0 }, { 0x1F8B, 0, 0 }, { 0x1F03, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 83| "\x1f\x89\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F09, 0x0399, 0 }, { 0x1F81, 0, 0 }, { 0x1F89, 0, 0 }, { 0x1F01, 0x03B9, 0 } # 84| "\x1f\x8a\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0A, 0x0399, 0 }, { 0x1F82, 0, 0 }, { 0x1F8A, 0, 0 }, { 0x1F02, 0x03B9, 0 } # 85|-> "\x1f\x8b\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0B, 0x0399, 0 }, { 0x1F83, 0, 0 }, { 0x1F8B, 0, 0 }, { 0x1F03, 0x03B9, 0 } # 86| "\x1f\x8c\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0C, 0x0399, 0 }, { 0x1F84, 0, 0 }, { 0x1F8C, 0, 0 }, { 0x1F04, 0x03B9, 0 } # 87| "\x1f\x8d\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0D, 0x0399, 0 }, { 0x1F85, 0, 0 }, { 0x1F8D, 0, 0 }, { 0x1F05, 0x03B9, 0 } Error: COMPILER_WARNING: [#def130] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:86:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 86 | "\x1f\x8c\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0C, 0x0399, 0 }, { 0x1F84, 0, 0 }, { 0x1F8C, 0, 0 }, { 0x1F04, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 84| "\x1f\x8a\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0A, 0x0399, 0 }, { 0x1F82, 0, 0 }, { 0x1F8A, 0, 0 }, { 0x1F02, 0x03B9, 0 } # 85| "\x1f\x8b\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0B, 0x0399, 0 }, { 0x1F83, 0, 0 }, { 0x1F8B, 0, 0 }, { 0x1F03, 0x03B9, 0 } # 86|-> "\x1f\x8c\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0C, 0x0399, 0 }, { 0x1F84, 0, 0 }, { 0x1F8C, 0, 0 }, { 0x1F04, 0x03B9, 0 } # 87| "\x1f\x8d\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0D, 0x0399, 0 }, { 0x1F85, 0, 0 }, { 0x1F8D, 0, 0 }, { 0x1F05, 0x03B9, 0 } # 88| "\x1f\x8e\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0E, 0x0399, 0 }, { 0x1F86, 0, 0 }, { 0x1F8E, 0, 0 }, { 0x1F06, 0x03B9, 0 } Error: COMPILER_WARNING: [#def131] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:87:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 87 | "\x1f\x8d\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0D, 0x0399, 0 }, { 0x1F85, 0, 0 }, { 0x1F8D, 0, 0 }, { 0x1F05, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 85| "\x1f\x8b\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0B, 0x0399, 0 }, { 0x1F83, 0, 0 }, { 0x1F8B, 0, 0 }, { 0x1F03, 0x03B9, 0 } # 86| "\x1f\x8c\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0C, 0x0399, 0 }, { 0x1F84, 0, 0 }, { 0x1F8C, 0, 0 }, { 0x1F04, 0x03B9, 0 } # 87|-> "\x1f\x8d\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0D, 0x0399, 0 }, { 0x1F85, 0, 0 }, { 0x1F8D, 0, 0 }, { 0x1F05, 0x03B9, 0 } # 88| "\x1f\x8e\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0E, 0x0399, 0 }, { 0x1F86, 0, 0 }, { 0x1F8E, 0, 0 }, { 0x1F06, 0x03B9, 0 } # 89| "\x1f\x8f\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0F, 0x0399, 0 }, { 0x1F87, 0, 0 }, { 0x1F8F, 0, 0 }, { 0x1F07, 0x03B9, 0 } Error: COMPILER_WARNING: [#def132] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:88:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 88 | "\x1f\x8e\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0E, 0x0399, 0 }, { 0x1F86, 0, 0 }, { 0x1F8E, 0, 0 }, { 0x1F06, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 86| "\x1f\x8c\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0C, 0x0399, 0 }, { 0x1F84, 0, 0 }, { 0x1F8C, 0, 0 }, { 0x1F04, 0x03B9, 0 } # 87| "\x1f\x8d\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0D, 0x0399, 0 }, { 0x1F85, 0, 0 }, { 0x1F8D, 0, 0 }, { 0x1F05, 0x03B9, 0 } # 88|-> "\x1f\x8e\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0E, 0x0399, 0 }, { 0x1F86, 0, 0 }, { 0x1F8E, 0, 0 }, { 0x1F06, 0x03B9, 0 } # 89| "\x1f\x8f\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0F, 0x0399, 0 }, { 0x1F87, 0, 0 }, { 0x1F8F, 0, 0 }, { 0x1F07, 0x03B9, 0 } # 90| "\x1f\x90\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F28, 0x0399, 0 }, { 0x1F90, 0, 0 }, { 0x1F98, 0, 0 }, { 0x1F20, 0x03B9, 0 } Error: COMPILER_WARNING: [#def133] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:89:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 89 | "\x1f\x8f\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0F, 0x0399, 0 }, { 0x1F87, 0, 0 }, { 0x1F8F, 0, 0 }, { 0x1F07, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 87| "\x1f\x8d\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0D, 0x0399, 0 }, { 0x1F85, 0, 0 }, { 0x1F8D, 0, 0 }, { 0x1F05, 0x03B9, 0 } # 88| "\x1f\x8e\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0E, 0x0399, 0 }, { 0x1F86, 0, 0 }, { 0x1F8E, 0, 0 }, { 0x1F06, 0x03B9, 0 } # 89|-> "\x1f\x8f\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0F, 0x0399, 0 }, { 0x1F87, 0, 0 }, { 0x1F8F, 0, 0 }, { 0x1F07, 0x03B9, 0 } # 90| "\x1f\x90\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F28, 0x0399, 0 }, { 0x1F90, 0, 0 }, { 0x1F98, 0, 0 }, { 0x1F20, 0x03B9, 0 } # 91| "\x1f\x91\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F29, 0x0399, 0 }, { 0x1F91, 0, 0 }, { 0x1F99, 0, 0 }, { 0x1F21, 0x03B9, 0 } Error: COMPILER_WARNING: [#def134] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:90:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 90 | "\x1f\x90\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F28, 0x0399, 0 }, { 0x1F90, 0, 0 }, { 0x1F98, 0, 0 }, { 0x1F20, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 88| "\x1f\x8e\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0E, 0x0399, 0 }, { 0x1F86, 0, 0 }, { 0x1F8E, 0, 0 }, { 0x1F06, 0x03B9, 0 } # 89| "\x1f\x8f\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0F, 0x0399, 0 }, { 0x1F87, 0, 0 }, { 0x1F8F, 0, 0 }, { 0x1F07, 0x03B9, 0 } # 90|-> "\x1f\x90\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F28, 0x0399, 0 }, { 0x1F90, 0, 0 }, { 0x1F98, 0, 0 }, { 0x1F20, 0x03B9, 0 } # 91| "\x1f\x91\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F29, 0x0399, 0 }, { 0x1F91, 0, 0 }, { 0x1F99, 0, 0 }, { 0x1F21, 0x03B9, 0 } # 92| "\x1f\x92\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2A, 0x0399, 0 }, { 0x1F92, 0, 0 }, { 0x1F9A, 0, 0 }, { 0x1F22, 0x03B9, 0 } Error: COMPILER_WARNING: [#def135] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:91:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 91 | "\x1f\x91\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F29, 0x0399, 0 }, { 0x1F91, 0, 0 }, { 0x1F99, 0, 0 }, { 0x1F21, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 89| "\x1f\x8f\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F0F, 0x0399, 0 }, { 0x1F87, 0, 0 }, { 0x1F8F, 0, 0 }, { 0x1F07, 0x03B9, 0 } # 90| "\x1f\x90\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F28, 0x0399, 0 }, { 0x1F90, 0, 0 }, { 0x1F98, 0, 0 }, { 0x1F20, 0x03B9, 0 } # 91|-> "\x1f\x91\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F29, 0x0399, 0 }, { 0x1F91, 0, 0 }, { 0x1F99, 0, 0 }, { 0x1F21, 0x03B9, 0 } # 92| "\x1f\x92\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2A, 0x0399, 0 }, { 0x1F92, 0, 0 }, { 0x1F9A, 0, 0 }, { 0x1F22, 0x03B9, 0 } # 93| "\x1f\x93\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2B, 0x0399, 0 }, { 0x1F93, 0, 0 }, { 0x1F9B, 0, 0 }, { 0x1F23, 0x03B9, 0 } Error: COMPILER_WARNING: [#def136] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:92:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 92 | "\x1f\x92\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2A, 0x0399, 0 }, { 0x1F92, 0, 0 }, { 0x1F9A, 0, 0 }, { 0x1F22, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 90| "\x1f\x90\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F28, 0x0399, 0 }, { 0x1F90, 0, 0 }, { 0x1F98, 0, 0 }, { 0x1F20, 0x03B9, 0 } # 91| "\x1f\x91\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F29, 0x0399, 0 }, { 0x1F91, 0, 0 }, { 0x1F99, 0, 0 }, { 0x1F21, 0x03B9, 0 } # 92|-> "\x1f\x92\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2A, 0x0399, 0 }, { 0x1F92, 0, 0 }, { 0x1F9A, 0, 0 }, { 0x1F22, 0x03B9, 0 } # 93| "\x1f\x93\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2B, 0x0399, 0 }, { 0x1F93, 0, 0 }, { 0x1F9B, 0, 0 }, { 0x1F23, 0x03B9, 0 } # 94| "\x1f\x94\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2C, 0x0399, 0 }, { 0x1F94, 0, 0 }, { 0x1F9C, 0, 0 }, { 0x1F24, 0x03B9, 0 } Error: COMPILER_WARNING: [#def137] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:93:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 93 | "\x1f\x93\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2B, 0x0399, 0 }, { 0x1F93, 0, 0 }, { 0x1F9B, 0, 0 }, { 0x1F23, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 91| "\x1f\x91\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F29, 0x0399, 0 }, { 0x1F91, 0, 0 }, { 0x1F99, 0, 0 }, { 0x1F21, 0x03B9, 0 } # 92| "\x1f\x92\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2A, 0x0399, 0 }, { 0x1F92, 0, 0 }, { 0x1F9A, 0, 0 }, { 0x1F22, 0x03B9, 0 } # 93|-> "\x1f\x93\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2B, 0x0399, 0 }, { 0x1F93, 0, 0 }, { 0x1F9B, 0, 0 }, { 0x1F23, 0x03B9, 0 } # 94| "\x1f\x94\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2C, 0x0399, 0 }, { 0x1F94, 0, 0 }, { 0x1F9C, 0, 0 }, { 0x1F24, 0x03B9, 0 } # 95| "\x1f\x95\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2D, 0x0399, 0 }, { 0x1F95, 0, 0 }, { 0x1F9D, 0, 0 }, { 0x1F25, 0x03B9, 0 } Error: COMPILER_WARNING: [#def138] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:94:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 94 | "\x1f\x94\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2C, 0x0399, 0 }, { 0x1F94, 0, 0 }, { 0x1F9C, 0, 0 }, { 0x1F24, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 92| "\x1f\x92\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2A, 0x0399, 0 }, { 0x1F92, 0, 0 }, { 0x1F9A, 0, 0 }, { 0x1F22, 0x03B9, 0 } # 93| "\x1f\x93\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2B, 0x0399, 0 }, { 0x1F93, 0, 0 }, { 0x1F9B, 0, 0 }, { 0x1F23, 0x03B9, 0 } # 94|-> "\x1f\x94\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2C, 0x0399, 0 }, { 0x1F94, 0, 0 }, { 0x1F9C, 0, 0 }, { 0x1F24, 0x03B9, 0 } # 95| "\x1f\x95\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2D, 0x0399, 0 }, { 0x1F95, 0, 0 }, { 0x1F9D, 0, 0 }, { 0x1F25, 0x03B9, 0 } # 96| "\x1f\x96\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2E, 0x0399, 0 }, { 0x1F96, 0, 0 }, { 0x1F9E, 0, 0 }, { 0x1F26, 0x03B9, 0 } Error: COMPILER_WARNING: [#def139] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:95:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 95 | "\x1f\x95\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2D, 0x0399, 0 }, { 0x1F95, 0, 0 }, { 0x1F9D, 0, 0 }, { 0x1F25, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 93| "\x1f\x93\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2B, 0x0399, 0 }, { 0x1F93, 0, 0 }, { 0x1F9B, 0, 0 }, { 0x1F23, 0x03B9, 0 } # 94| "\x1f\x94\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2C, 0x0399, 0 }, { 0x1F94, 0, 0 }, { 0x1F9C, 0, 0 }, { 0x1F24, 0x03B9, 0 } # 95|-> "\x1f\x95\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2D, 0x0399, 0 }, { 0x1F95, 0, 0 }, { 0x1F9D, 0, 0 }, { 0x1F25, 0x03B9, 0 } # 96| "\x1f\x96\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2E, 0x0399, 0 }, { 0x1F96, 0, 0 }, { 0x1F9E, 0, 0 }, { 0x1F26, 0x03B9, 0 } # 97| "\x1f\x97\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2F, 0x0399, 0 }, { 0x1F97, 0, 0 }, { 0x1F9F, 0, 0 }, { 0x1F27, 0x03B9, 0 } Error: COMPILER_WARNING: [#def140] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:96:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 96 | "\x1f\x96\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2E, 0x0399, 0 }, { 0x1F96, 0, 0 }, { 0x1F9E, 0, 0 }, { 0x1F26, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 94| "\x1f\x94\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2C, 0x0399, 0 }, { 0x1F94, 0, 0 }, { 0x1F9C, 0, 0 }, { 0x1F24, 0x03B9, 0 } # 95| "\x1f\x95\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2D, 0x0399, 0 }, { 0x1F95, 0, 0 }, { 0x1F9D, 0, 0 }, { 0x1F25, 0x03B9, 0 } # 96|-> "\x1f\x96\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2E, 0x0399, 0 }, { 0x1F96, 0, 0 }, { 0x1F9E, 0, 0 }, { 0x1F26, 0x03B9, 0 } # 97| "\x1f\x97\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2F, 0x0399, 0 }, { 0x1F97, 0, 0 }, { 0x1F9F, 0, 0 }, { 0x1F27, 0x03B9, 0 } # 98| "\x1f\x98\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F28, 0x0399, 0 }, { 0x1F90, 0, 0 }, { 0x1F98, 0, 0 }, { 0x1F20, 0x03B9, 0 } Error: COMPILER_WARNING: [#def141] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:97:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 97 | "\x1f\x97\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2F, 0x0399, 0 }, { 0x1F97, 0, 0 }, { 0x1F9F, 0, 0 }, { 0x1F27, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 95| "\x1f\x95\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2D, 0x0399, 0 }, { 0x1F95, 0, 0 }, { 0x1F9D, 0, 0 }, { 0x1F25, 0x03B9, 0 } # 96| "\x1f\x96\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2E, 0x0399, 0 }, { 0x1F96, 0, 0 }, { 0x1F9E, 0, 0 }, { 0x1F26, 0x03B9, 0 } # 97|-> "\x1f\x97\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2F, 0x0399, 0 }, { 0x1F97, 0, 0 }, { 0x1F9F, 0, 0 }, { 0x1F27, 0x03B9, 0 } # 98| "\x1f\x98\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F28, 0x0399, 0 }, { 0x1F90, 0, 0 }, { 0x1F98, 0, 0 }, { 0x1F20, 0x03B9, 0 } # 99| "\x1f\x99\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F29, 0x0399, 0 }, { 0x1F91, 0, 0 }, { 0x1F99, 0, 0 }, { 0x1F21, 0x03B9, 0 } Error: COMPILER_WARNING: [#def142] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:98:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 98 | "\x1f\x98\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F28, 0x0399, 0 }, { 0x1F90, 0, 0 }, { 0x1F98, 0, 0 }, { 0x1F20, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 96| "\x1f\x96\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2E, 0x0399, 0 }, { 0x1F96, 0, 0 }, { 0x1F9E, 0, 0 }, { 0x1F26, 0x03B9, 0 } # 97| "\x1f\x97\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2F, 0x0399, 0 }, { 0x1F97, 0, 0 }, { 0x1F9F, 0, 0 }, { 0x1F27, 0x03B9, 0 } # 98|-> "\x1f\x98\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F28, 0x0399, 0 }, { 0x1F90, 0, 0 }, { 0x1F98, 0, 0 }, { 0x1F20, 0x03B9, 0 } # 99| "\x1f\x99\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F29, 0x0399, 0 }, { 0x1F91, 0, 0 }, { 0x1F99, 0, 0 }, { 0x1F21, 0x03B9, 0 } # 100| "\x1f\x9a\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2A, 0x0399, 0 }, { 0x1F92, 0, 0 }, { 0x1F9A, 0, 0 }, { 0x1F22, 0x03B9, 0 } Error: COMPILER_WARNING: [#def143] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:99:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 99 | "\x1f\x99\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F29, 0x0399, 0 }, { 0x1F91, 0, 0 }, { 0x1F99, 0, 0 }, { 0x1F21, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 97| "\x1f\x97\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2F, 0x0399, 0 }, { 0x1F97, 0, 0 }, { 0x1F9F, 0, 0 }, { 0x1F27, 0x03B9, 0 } # 98| "\x1f\x98\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F28, 0x0399, 0 }, { 0x1F90, 0, 0 }, { 0x1F98, 0, 0 }, { 0x1F20, 0x03B9, 0 } # 99|-> "\x1f\x99\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F29, 0x0399, 0 }, { 0x1F91, 0, 0 }, { 0x1F99, 0, 0 }, { 0x1F21, 0x03B9, 0 } # 100| "\x1f\x9a\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2A, 0x0399, 0 }, { 0x1F92, 0, 0 }, { 0x1F9A, 0, 0 }, { 0x1F22, 0x03B9, 0 } # 101| "\x1f\x9b\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2B, 0x0399, 0 }, { 0x1F93, 0, 0 }, { 0x1F9B, 0, 0 }, { 0x1F23, 0x03B9, 0 } Error: COMPILER_WARNING: [#def144] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:100:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 100 | "\x1f\x9a\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2A, 0x0399, 0 }, { 0x1F92, 0, 0 }, { 0x1F9A, 0, 0 }, { 0x1F22, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 98| "\x1f\x98\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F28, 0x0399, 0 }, { 0x1F90, 0, 0 }, { 0x1F98, 0, 0 }, { 0x1F20, 0x03B9, 0 } # 99| "\x1f\x99\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F29, 0x0399, 0 }, { 0x1F91, 0, 0 }, { 0x1F99, 0, 0 }, { 0x1F21, 0x03B9, 0 } # 100|-> "\x1f\x9a\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2A, 0x0399, 0 }, { 0x1F92, 0, 0 }, { 0x1F9A, 0, 0 }, { 0x1F22, 0x03B9, 0 } # 101| "\x1f\x9b\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2B, 0x0399, 0 }, { 0x1F93, 0, 0 }, { 0x1F9B, 0, 0 }, { 0x1F23, 0x03B9, 0 } # 102| "\x1f\x9c\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2C, 0x0399, 0 }, { 0x1F94, 0, 0 }, { 0x1F9C, 0, 0 }, { 0x1F24, 0x03B9, 0 } Error: COMPILER_WARNING: [#def145] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:101:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 101 | "\x1f\x9b\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2B, 0x0399, 0 }, { 0x1F93, 0, 0 }, { 0x1F9B, 0, 0 }, { 0x1F23, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 99| "\x1f\x99\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F29, 0x0399, 0 }, { 0x1F91, 0, 0 }, { 0x1F99, 0, 0 }, { 0x1F21, 0x03B9, 0 } # 100| "\x1f\x9a\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2A, 0x0399, 0 }, { 0x1F92, 0, 0 }, { 0x1F9A, 0, 0 }, { 0x1F22, 0x03B9, 0 } # 101|-> "\x1f\x9b\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2B, 0x0399, 0 }, { 0x1F93, 0, 0 }, { 0x1F9B, 0, 0 }, { 0x1F23, 0x03B9, 0 } # 102| "\x1f\x9c\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2C, 0x0399, 0 }, { 0x1F94, 0, 0 }, { 0x1F9C, 0, 0 }, { 0x1F24, 0x03B9, 0 } # 103| "\x1f\x9d\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2D, 0x0399, 0 }, { 0x1F95, 0, 0 }, { 0x1F9D, 0, 0 }, { 0x1F25, 0x03B9, 0 } Error: COMPILER_WARNING: [#def146] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:102:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 102 | "\x1f\x9c\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2C, 0x0399, 0 }, { 0x1F94, 0, 0 }, { 0x1F9C, 0, 0 }, { 0x1F24, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 100| "\x1f\x9a\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2A, 0x0399, 0 }, { 0x1F92, 0, 0 }, { 0x1F9A, 0, 0 }, { 0x1F22, 0x03B9, 0 } # 101| "\x1f\x9b\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2B, 0x0399, 0 }, { 0x1F93, 0, 0 }, { 0x1F9B, 0, 0 }, { 0x1F23, 0x03B9, 0 } # 102|-> "\x1f\x9c\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2C, 0x0399, 0 }, { 0x1F94, 0, 0 }, { 0x1F9C, 0, 0 }, { 0x1F24, 0x03B9, 0 } # 103| "\x1f\x9d\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2D, 0x0399, 0 }, { 0x1F95, 0, 0 }, { 0x1F9D, 0, 0 }, { 0x1F25, 0x03B9, 0 } # 104| "\x1f\x9e\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2E, 0x0399, 0 }, { 0x1F96, 0, 0 }, { 0x1F9E, 0, 0 }, { 0x1F26, 0x03B9, 0 } Error: COMPILER_WARNING: [#def147] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:103:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 103 | "\x1f\x9d\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2D, 0x0399, 0 }, { 0x1F95, 0, 0 }, { 0x1F9D, 0, 0 }, { 0x1F25, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 101| "\x1f\x9b\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2B, 0x0399, 0 }, { 0x1F93, 0, 0 }, { 0x1F9B, 0, 0 }, { 0x1F23, 0x03B9, 0 } # 102| "\x1f\x9c\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2C, 0x0399, 0 }, { 0x1F94, 0, 0 }, { 0x1F9C, 0, 0 }, { 0x1F24, 0x03B9, 0 } # 103|-> "\x1f\x9d\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2D, 0x0399, 0 }, { 0x1F95, 0, 0 }, { 0x1F9D, 0, 0 }, { 0x1F25, 0x03B9, 0 } # 104| "\x1f\x9e\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2E, 0x0399, 0 }, { 0x1F96, 0, 0 }, { 0x1F9E, 0, 0 }, { 0x1F26, 0x03B9, 0 } # 105| "\x1f\x9f\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2F, 0x0399, 0 }, { 0x1F97, 0, 0 }, { 0x1F9F, 0, 0 }, { 0x1F27, 0x03B9, 0 } Error: COMPILER_WARNING: [#def148] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:104:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 104 | "\x1f\x9e\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2E, 0x0399, 0 }, { 0x1F96, 0, 0 }, { 0x1F9E, 0, 0 }, { 0x1F26, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 102| "\x1f\x9c\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2C, 0x0399, 0 }, { 0x1F94, 0, 0 }, { 0x1F9C, 0, 0 }, { 0x1F24, 0x03B9, 0 } # 103| "\x1f\x9d\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2D, 0x0399, 0 }, { 0x1F95, 0, 0 }, { 0x1F9D, 0, 0 }, { 0x1F25, 0x03B9, 0 } # 104|-> "\x1f\x9e\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2E, 0x0399, 0 }, { 0x1F96, 0, 0 }, { 0x1F9E, 0, 0 }, { 0x1F26, 0x03B9, 0 } # 105| "\x1f\x9f\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2F, 0x0399, 0 }, { 0x1F97, 0, 0 }, { 0x1F9F, 0, 0 }, { 0x1F27, 0x03B9, 0 } # 106| "\x1f\xa0\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F68, 0x0399, 0 }, { 0x1FA0, 0, 0 }, { 0x1FA8, 0, 0 }, { 0x1F60, 0x03B9, 0 } Error: COMPILER_WARNING: [#def149] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:105:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 105 | "\x1f\x9f\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2F, 0x0399, 0 }, { 0x1F97, 0, 0 }, { 0x1F9F, 0, 0 }, { 0x1F27, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 103| "\x1f\x9d\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2D, 0x0399, 0 }, { 0x1F95, 0, 0 }, { 0x1F9D, 0, 0 }, { 0x1F25, 0x03B9, 0 } # 104| "\x1f\x9e\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2E, 0x0399, 0 }, { 0x1F96, 0, 0 }, { 0x1F9E, 0, 0 }, { 0x1F26, 0x03B9, 0 } # 105|-> "\x1f\x9f\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2F, 0x0399, 0 }, { 0x1F97, 0, 0 }, { 0x1F9F, 0, 0 }, { 0x1F27, 0x03B9, 0 } # 106| "\x1f\xa0\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F68, 0x0399, 0 }, { 0x1FA0, 0, 0 }, { 0x1FA8, 0, 0 }, { 0x1F60, 0x03B9, 0 } # 107| "\x1f\xa1\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F69, 0x0399, 0 }, { 0x1FA1, 0, 0 }, { 0x1FA9, 0, 0 }, { 0x1F61, 0x03B9, 0 } Error: COMPILER_WARNING: [#def150] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:106:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 106 | "\x1f\xa0\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F68, 0x0399, 0 }, { 0x1FA0, 0, 0 }, { 0x1FA8, 0, 0 }, { 0x1F60, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 104| "\x1f\x9e\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2E, 0x0399, 0 }, { 0x1F96, 0, 0 }, { 0x1F9E, 0, 0 }, { 0x1F26, 0x03B9, 0 } # 105| "\x1f\x9f\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2F, 0x0399, 0 }, { 0x1F97, 0, 0 }, { 0x1F9F, 0, 0 }, { 0x1F27, 0x03B9, 0 } # 106|-> "\x1f\xa0\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F68, 0x0399, 0 }, { 0x1FA0, 0, 0 }, { 0x1FA8, 0, 0 }, { 0x1F60, 0x03B9, 0 } # 107| "\x1f\xa1\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F69, 0x0399, 0 }, { 0x1FA1, 0, 0 }, { 0x1FA9, 0, 0 }, { 0x1F61, 0x03B9, 0 } # 108| "\x1f\xa2\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6A, 0x0399, 0 }, { 0x1FA2, 0, 0 }, { 0x1FAA, 0, 0 }, { 0x1F62, 0x03B9, 0 } Error: COMPILER_WARNING: [#def151] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:107:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 107 | "\x1f\xa1\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F69, 0x0399, 0 }, { 0x1FA1, 0, 0 }, { 0x1FA9, 0, 0 }, { 0x1F61, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 105| "\x1f\x9f\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F2F, 0x0399, 0 }, { 0x1F97, 0, 0 }, { 0x1F9F, 0, 0 }, { 0x1F27, 0x03B9, 0 } # 106| "\x1f\xa0\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F68, 0x0399, 0 }, { 0x1FA0, 0, 0 }, { 0x1FA8, 0, 0 }, { 0x1F60, 0x03B9, 0 } # 107|-> "\x1f\xa1\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F69, 0x0399, 0 }, { 0x1FA1, 0, 0 }, { 0x1FA9, 0, 0 }, { 0x1F61, 0x03B9, 0 } # 108| "\x1f\xa2\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6A, 0x0399, 0 }, { 0x1FA2, 0, 0 }, { 0x1FAA, 0, 0 }, { 0x1F62, 0x03B9, 0 } # 109| "\x1f\xa3\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6B, 0x0399, 0 }, { 0x1FA3, 0, 0 }, { 0x1FAB, 0, 0 }, { 0x1F63, 0x03B9, 0 } Error: COMPILER_WARNING: [#def152] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:108:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 108 | "\x1f\xa2\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6A, 0x0399, 0 }, { 0x1FA2, 0, 0 }, { 0x1FAA, 0, 0 }, { 0x1F62, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 106| "\x1f\xa0\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F68, 0x0399, 0 }, { 0x1FA0, 0, 0 }, { 0x1FA8, 0, 0 }, { 0x1F60, 0x03B9, 0 } # 107| "\x1f\xa1\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F69, 0x0399, 0 }, { 0x1FA1, 0, 0 }, { 0x1FA9, 0, 0 }, { 0x1F61, 0x03B9, 0 } # 108|-> "\x1f\xa2\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6A, 0x0399, 0 }, { 0x1FA2, 0, 0 }, { 0x1FAA, 0, 0 }, { 0x1F62, 0x03B9, 0 } # 109| "\x1f\xa3\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6B, 0x0399, 0 }, { 0x1FA3, 0, 0 }, { 0x1FAB, 0, 0 }, { 0x1F63, 0x03B9, 0 } # 110| "\x1f\xa4\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6C, 0x0399, 0 }, { 0x1FA4, 0, 0 }, { 0x1FAC, 0, 0 }, { 0x1F64, 0x03B9, 0 } Error: COMPILER_WARNING: [#def153] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:109:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 109 | "\x1f\xa3\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6B, 0x0399, 0 }, { 0x1FA3, 0, 0 }, { 0x1FAB, 0, 0 }, { 0x1F63, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 107| "\x1f\xa1\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F69, 0x0399, 0 }, { 0x1FA1, 0, 0 }, { 0x1FA9, 0, 0 }, { 0x1F61, 0x03B9, 0 } # 108| "\x1f\xa2\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6A, 0x0399, 0 }, { 0x1FA2, 0, 0 }, { 0x1FAA, 0, 0 }, { 0x1F62, 0x03B9, 0 } # 109|-> "\x1f\xa3\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6B, 0x0399, 0 }, { 0x1FA3, 0, 0 }, { 0x1FAB, 0, 0 }, { 0x1F63, 0x03B9, 0 } # 110| "\x1f\xa4\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6C, 0x0399, 0 }, { 0x1FA4, 0, 0 }, { 0x1FAC, 0, 0 }, { 0x1F64, 0x03B9, 0 } # 111| "\x1f\xa5\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6D, 0x0399, 0 }, { 0x1FA5, 0, 0 }, { 0x1FAD, 0, 0 }, { 0x1F65, 0x03B9, 0 } Error: COMPILER_WARNING: [#def154] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:110:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 110 | "\x1f\xa4\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6C, 0x0399, 0 }, { 0x1FA4, 0, 0 }, { 0x1FAC, 0, 0 }, { 0x1F64, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 108| "\x1f\xa2\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6A, 0x0399, 0 }, { 0x1FA2, 0, 0 }, { 0x1FAA, 0, 0 }, { 0x1F62, 0x03B9, 0 } # 109| "\x1f\xa3\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6B, 0x0399, 0 }, { 0x1FA3, 0, 0 }, { 0x1FAB, 0, 0 }, { 0x1F63, 0x03B9, 0 } # 110|-> "\x1f\xa4\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6C, 0x0399, 0 }, { 0x1FA4, 0, 0 }, { 0x1FAC, 0, 0 }, { 0x1F64, 0x03B9, 0 } # 111| "\x1f\xa5\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6D, 0x0399, 0 }, { 0x1FA5, 0, 0 }, { 0x1FAD, 0, 0 }, { 0x1F65, 0x03B9, 0 } # 112| "\x1f\xa6\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6E, 0x0399, 0 }, { 0x1FA6, 0, 0 }, { 0x1FAE, 0, 0 }, { 0x1F66, 0x03B9, 0 } Error: COMPILER_WARNING: [#def155] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:111:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 111 | "\x1f\xa5\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6D, 0x0399, 0 }, { 0x1FA5, 0, 0 }, { 0x1FAD, 0, 0 }, { 0x1F65, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 109| "\x1f\xa3\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6B, 0x0399, 0 }, { 0x1FA3, 0, 0 }, { 0x1FAB, 0, 0 }, { 0x1F63, 0x03B9, 0 } # 110| "\x1f\xa4\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6C, 0x0399, 0 }, { 0x1FA4, 0, 0 }, { 0x1FAC, 0, 0 }, { 0x1F64, 0x03B9, 0 } # 111|-> "\x1f\xa5\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6D, 0x0399, 0 }, { 0x1FA5, 0, 0 }, { 0x1FAD, 0, 0 }, { 0x1F65, 0x03B9, 0 } # 112| "\x1f\xa6\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6E, 0x0399, 0 }, { 0x1FA6, 0, 0 }, { 0x1FAE, 0, 0 }, { 0x1F66, 0x03B9, 0 } # 113| "\x1f\xa7\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6F, 0x0399, 0 }, { 0x1FA7, 0, 0 }, { 0x1FAF, 0, 0 }, { 0x1F67, 0x03B9, 0 } Error: COMPILER_WARNING: [#def156] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:112:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 112 | "\x1f\xa6\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6E, 0x0399, 0 }, { 0x1FA6, 0, 0 }, { 0x1FAE, 0, 0 }, { 0x1F66, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 110| "\x1f\xa4\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6C, 0x0399, 0 }, { 0x1FA4, 0, 0 }, { 0x1FAC, 0, 0 }, { 0x1F64, 0x03B9, 0 } # 111| "\x1f\xa5\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6D, 0x0399, 0 }, { 0x1FA5, 0, 0 }, { 0x1FAD, 0, 0 }, { 0x1F65, 0x03B9, 0 } # 112|-> "\x1f\xa6\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6E, 0x0399, 0 }, { 0x1FA6, 0, 0 }, { 0x1FAE, 0, 0 }, { 0x1F66, 0x03B9, 0 } # 113| "\x1f\xa7\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6F, 0x0399, 0 }, { 0x1FA7, 0, 0 }, { 0x1FAF, 0, 0 }, { 0x1F67, 0x03B9, 0 } # 114| "\x1f\xa8\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F68, 0x0399, 0 }, { 0x1FA0, 0, 0 }, { 0x1FA8, 0, 0 }, { 0x1F60, 0x03B9, 0 } Error: COMPILER_WARNING: [#def157] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:113:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 113 | "\x1f\xa7\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6F, 0x0399, 0 }, { 0x1FA7, 0, 0 }, { 0x1FAF, 0, 0 }, { 0x1F67, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 111| "\x1f\xa5\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6D, 0x0399, 0 }, { 0x1FA5, 0, 0 }, { 0x1FAD, 0, 0 }, { 0x1F65, 0x03B9, 0 } # 112| "\x1f\xa6\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6E, 0x0399, 0 }, { 0x1FA6, 0, 0 }, { 0x1FAE, 0, 0 }, { 0x1F66, 0x03B9, 0 } # 113|-> "\x1f\xa7\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6F, 0x0399, 0 }, { 0x1FA7, 0, 0 }, { 0x1FAF, 0, 0 }, { 0x1F67, 0x03B9, 0 } # 114| "\x1f\xa8\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F68, 0x0399, 0 }, { 0x1FA0, 0, 0 }, { 0x1FA8, 0, 0 }, { 0x1F60, 0x03B9, 0 } # 115| "\x1f\xa9\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F69, 0x0399, 0 }, { 0x1FA1, 0, 0 }, { 0x1FA9, 0, 0 }, { 0x1F61, 0x03B9, 0 } Error: COMPILER_WARNING: [#def158] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:114:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 114 | "\x1f\xa8\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F68, 0x0399, 0 }, { 0x1FA0, 0, 0 }, { 0x1FA8, 0, 0 }, { 0x1F60, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 112| "\x1f\xa6\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6E, 0x0399, 0 }, { 0x1FA6, 0, 0 }, { 0x1FAE, 0, 0 }, { 0x1F66, 0x03B9, 0 } # 113| "\x1f\xa7\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6F, 0x0399, 0 }, { 0x1FA7, 0, 0 }, { 0x1FAF, 0, 0 }, { 0x1F67, 0x03B9, 0 } # 114|-> "\x1f\xa8\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F68, 0x0399, 0 }, { 0x1FA0, 0, 0 }, { 0x1FA8, 0, 0 }, { 0x1F60, 0x03B9, 0 } # 115| "\x1f\xa9\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F69, 0x0399, 0 }, { 0x1FA1, 0, 0 }, { 0x1FA9, 0, 0 }, { 0x1F61, 0x03B9, 0 } # 116| "\x1f\xaa\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6A, 0x0399, 0 }, { 0x1FA2, 0, 0 }, { 0x1FAA, 0, 0 }, { 0x1F62, 0x03B9, 0 } Error: COMPILER_WARNING: [#def159] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:115:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 115 | "\x1f\xa9\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F69, 0x0399, 0 }, { 0x1FA1, 0, 0 }, { 0x1FA9, 0, 0 }, { 0x1F61, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 113| "\x1f\xa7\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6F, 0x0399, 0 }, { 0x1FA7, 0, 0 }, { 0x1FAF, 0, 0 }, { 0x1F67, 0x03B9, 0 } # 114| "\x1f\xa8\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F68, 0x0399, 0 }, { 0x1FA0, 0, 0 }, { 0x1FA8, 0, 0 }, { 0x1F60, 0x03B9, 0 } # 115|-> "\x1f\xa9\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F69, 0x0399, 0 }, { 0x1FA1, 0, 0 }, { 0x1FA9, 0, 0 }, { 0x1F61, 0x03B9, 0 } # 116| "\x1f\xaa\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6A, 0x0399, 0 }, { 0x1FA2, 0, 0 }, { 0x1FAA, 0, 0 }, { 0x1F62, 0x03B9, 0 } # 117| "\x1f\xab\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6B, 0x0399, 0 }, { 0x1FA3, 0, 0 }, { 0x1FAB, 0, 0 }, { 0x1F63, 0x03B9, 0 } Error: COMPILER_WARNING: [#def160] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:116:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 116 | "\x1f\xaa\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6A, 0x0399, 0 }, { 0x1FA2, 0, 0 }, { 0x1FAA, 0, 0 }, { 0x1F62, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 114| "\x1f\xa8\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F68, 0x0399, 0 }, { 0x1FA0, 0, 0 }, { 0x1FA8, 0, 0 }, { 0x1F60, 0x03B9, 0 } # 115| "\x1f\xa9\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F69, 0x0399, 0 }, { 0x1FA1, 0, 0 }, { 0x1FA9, 0, 0 }, { 0x1F61, 0x03B9, 0 } # 116|-> "\x1f\xaa\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6A, 0x0399, 0 }, { 0x1FA2, 0, 0 }, { 0x1FAA, 0, 0 }, { 0x1F62, 0x03B9, 0 } # 117| "\x1f\xab\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6B, 0x0399, 0 }, { 0x1FA3, 0, 0 }, { 0x1FAB, 0, 0 }, { 0x1F63, 0x03B9, 0 } # 118| "\x1f\xac\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6C, 0x0399, 0 }, { 0x1FA4, 0, 0 }, { 0x1FAC, 0, 0 }, { 0x1F64, 0x03B9, 0 } Error: COMPILER_WARNING: [#def161] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:117:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 117 | "\x1f\xab\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6B, 0x0399, 0 }, { 0x1FA3, 0, 0 }, { 0x1FAB, 0, 0 }, { 0x1F63, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 115| "\x1f\xa9\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F69, 0x0399, 0 }, { 0x1FA1, 0, 0 }, { 0x1FA9, 0, 0 }, { 0x1F61, 0x03B9, 0 } # 116| "\x1f\xaa\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6A, 0x0399, 0 }, { 0x1FA2, 0, 0 }, { 0x1FAA, 0, 0 }, { 0x1F62, 0x03B9, 0 } # 117|-> "\x1f\xab\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6B, 0x0399, 0 }, { 0x1FA3, 0, 0 }, { 0x1FAB, 0, 0 }, { 0x1F63, 0x03B9, 0 } # 118| "\x1f\xac\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6C, 0x0399, 0 }, { 0x1FA4, 0, 0 }, { 0x1FAC, 0, 0 }, { 0x1F64, 0x03B9, 0 } # 119| "\x1f\xad\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6D, 0x0399, 0 }, { 0x1FA5, 0, 0 }, { 0x1FAD, 0, 0 }, { 0x1F65, 0x03B9, 0 } Error: COMPILER_WARNING: [#def162] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:118:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 118 | "\x1f\xac\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6C, 0x0399, 0 }, { 0x1FA4, 0, 0 }, { 0x1FAC, 0, 0 }, { 0x1F64, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 116| "\x1f\xaa\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6A, 0x0399, 0 }, { 0x1FA2, 0, 0 }, { 0x1FAA, 0, 0 }, { 0x1F62, 0x03B9, 0 } # 117| "\x1f\xab\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6B, 0x0399, 0 }, { 0x1FA3, 0, 0 }, { 0x1FAB, 0, 0 }, { 0x1F63, 0x03B9, 0 } # 118|-> "\x1f\xac\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6C, 0x0399, 0 }, { 0x1FA4, 0, 0 }, { 0x1FAC, 0, 0 }, { 0x1F64, 0x03B9, 0 } # 119| "\x1f\xad\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6D, 0x0399, 0 }, { 0x1FA5, 0, 0 }, { 0x1FAD, 0, 0 }, { 0x1F65, 0x03B9, 0 } # 120| "\x1f\xae\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6E, 0x0399, 0 }, { 0x1FA6, 0, 0 }, { 0x1FAE, 0, 0 }, { 0x1F66, 0x03B9, 0 } Error: COMPILER_WARNING: [#def163] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:119:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 119 | "\x1f\xad\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6D, 0x0399, 0 }, { 0x1FA5, 0, 0 }, { 0x1FAD, 0, 0 }, { 0x1F65, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 117| "\x1f\xab\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6B, 0x0399, 0 }, { 0x1FA3, 0, 0 }, { 0x1FAB, 0, 0 }, { 0x1F63, 0x03B9, 0 } # 118| "\x1f\xac\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6C, 0x0399, 0 }, { 0x1FA4, 0, 0 }, { 0x1FAC, 0, 0 }, { 0x1F64, 0x03B9, 0 } # 119|-> "\x1f\xad\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6D, 0x0399, 0 }, { 0x1FA5, 0, 0 }, { 0x1FAD, 0, 0 }, { 0x1F65, 0x03B9, 0 } # 120| "\x1f\xae\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6E, 0x0399, 0 }, { 0x1FA6, 0, 0 }, { 0x1FAE, 0, 0 }, { 0x1F66, 0x03B9, 0 } # 121| "\x1f\xaf\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6F, 0x0399, 0 }, { 0x1FA7, 0, 0 }, { 0x1FAF, 0, 0 }, { 0x1F67, 0x03B9, 0 } Error: COMPILER_WARNING: [#def164] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:120:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 120 | "\x1f\xae\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6E, 0x0399, 0 }, { 0x1FA6, 0, 0 }, { 0x1FAE, 0, 0 }, { 0x1F66, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 118| "\x1f\xac\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6C, 0x0399, 0 }, { 0x1FA4, 0, 0 }, { 0x1FAC, 0, 0 }, { 0x1F64, 0x03B9, 0 } # 119| "\x1f\xad\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6D, 0x0399, 0 }, { 0x1FA5, 0, 0 }, { 0x1FAD, 0, 0 }, { 0x1F65, 0x03B9, 0 } # 120|-> "\x1f\xae\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6E, 0x0399, 0 }, { 0x1FA6, 0, 0 }, { 0x1FAE, 0, 0 }, { 0x1F66, 0x03B9, 0 } # 121| "\x1f\xaf\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6F, 0x0399, 0 }, { 0x1FA7, 0, 0 }, { 0x1FAF, 0, 0 }, { 0x1F67, 0x03B9, 0 } # 122| "\x1f\xb2\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1FBA, 0x0399, 0 }, { 0x1FB2, 0, 0 }, { 0x1FBA, 0x0345, 0 }, { 0x1F70, 0x03B9, 0 } Error: COMPILER_WARNING: [#def165] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:121:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 121 | "\x1f\xaf\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6F, 0x0399, 0 }, { 0x1FA7, 0, 0 }, { 0x1FAF, 0, 0 }, { 0x1F67, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 119| "\x1f\xad\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6D, 0x0399, 0 }, { 0x1FA5, 0, 0 }, { 0x1FAD, 0, 0 }, { 0x1F65, 0x03B9, 0 } # 120| "\x1f\xae\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6E, 0x0399, 0 }, { 0x1FA6, 0, 0 }, { 0x1FAE, 0, 0 }, { 0x1F66, 0x03B9, 0 } # 121|-> "\x1f\xaf\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6F, 0x0399, 0 }, { 0x1FA7, 0, 0 }, { 0x1FAF, 0, 0 }, { 0x1F67, 0x03B9, 0 } # 122| "\x1f\xb2\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1FBA, 0x0399, 0 }, { 0x1FB2, 0, 0 }, { 0x1FBA, 0x0345, 0 }, { 0x1F70, 0x03B9, 0 } # 123| "\x1f\xb3\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0391, 0x0399, 0 }, { 0x1FB3, 0, 0 }, { 0x1FBC, 0, 0 }, { 0x03B1, 0x03B9, 0 } Error: COMPILER_WARNING: [#def166] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:122:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 122 | "\x1f\xb2\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1FBA, 0x0399, 0 }, { 0x1FB2, 0, 0 }, { 0x1FBA, 0x0345, 0 }, { 0x1F70, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 120| "\x1f\xae\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6E, 0x0399, 0 }, { 0x1FA6, 0, 0 }, { 0x1FAE, 0, 0 }, { 0x1F66, 0x03B9, 0 } # 121| "\x1f\xaf\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6F, 0x0399, 0 }, { 0x1FA7, 0, 0 }, { 0x1FAF, 0, 0 }, { 0x1F67, 0x03B9, 0 } # 122|-> "\x1f\xb2\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1FBA, 0x0399, 0 }, { 0x1FB2, 0, 0 }, { 0x1FBA, 0x0345, 0 }, { 0x1F70, 0x03B9, 0 } # 123| "\x1f\xb3\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0391, 0x0399, 0 }, { 0x1FB3, 0, 0 }, { 0x1FBC, 0, 0 }, { 0x03B1, 0x03B9, 0 } # 124| "\x1f\xb4\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0386, 0x0399, 0 }, { 0x1FB4, 0, 0 }, { 0x0386, 0x0345, 0 }, { 0x03AC, 0x03B9, 0 } Error: COMPILER_WARNING: [#def167] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:123:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 123 | "\x1f\xb3\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0391, 0x0399, 0 }, { 0x1FB3, 0, 0 }, { 0x1FBC, 0, 0 }, { 0x03B1, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 121| "\x1f\xaf\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1F6F, 0x0399, 0 }, { 0x1FA7, 0, 0 }, { 0x1FAF, 0, 0 }, { 0x1F67, 0x03B9, 0 } # 122| "\x1f\xb2\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1FBA, 0x0399, 0 }, { 0x1FB2, 0, 0 }, { 0x1FBA, 0x0345, 0 }, { 0x1F70, 0x03B9, 0 } # 123|-> "\x1f\xb3\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0391, 0x0399, 0 }, { 0x1FB3, 0, 0 }, { 0x1FBC, 0, 0 }, { 0x03B1, 0x03B9, 0 } # 124| "\x1f\xb4\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0386, 0x0399, 0 }, { 0x1FB4, 0, 0 }, { 0x0386, 0x0345, 0 }, { 0x03AC, 0x03B9, 0 } # 125| "\x1f\xb6\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0391, 0x0342, 0 }, { 0x1FB6, 0, 0 }, { 0x0391, 0x0342, 0 }, { 0x03B1, 0x0342, 0 } Error: COMPILER_WARNING: [#def168] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:124:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 124 | "\x1f\xb4\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0386, 0x0399, 0 }, { 0x1FB4, 0, 0 }, { 0x0386, 0x0345, 0 }, { 0x03AC, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 122| "\x1f\xb2\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1FBA, 0x0399, 0 }, { 0x1FB2, 0, 0 }, { 0x1FBA, 0x0345, 0 }, { 0x1F70, 0x03B9, 0 } # 123| "\x1f\xb3\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0391, 0x0399, 0 }, { 0x1FB3, 0, 0 }, { 0x1FBC, 0, 0 }, { 0x03B1, 0x03B9, 0 } # 124|-> "\x1f\xb4\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0386, 0x0399, 0 }, { 0x1FB4, 0, 0 }, { 0x0386, 0x0345, 0 }, { 0x03AC, 0x03B9, 0 } # 125| "\x1f\xb6\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0391, 0x0342, 0 }, { 0x1FB6, 0, 0 }, { 0x0391, 0x0342, 0 }, { 0x03B1, 0x0342, 0 } # 126| "\x1f\xb7\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0391, 0x0342, 0x0399 }, { 0x1FB7, 0, 0 }, { 0x0391, 0x0342, 0x0345 }, { 0x03B1, 0x0342, 0x03B9 } Error: COMPILER_WARNING: [#def169] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:125:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 125 | "\x1f\xb6\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0391, 0x0342, 0 }, { 0x1FB6, 0, 0 }, { 0x0391, 0x0342, 0 }, { 0x03B1, 0x0342, 0 } # | ^~~~~~~~~~~~~~ # 123| "\x1f\xb3\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0391, 0x0399, 0 }, { 0x1FB3, 0, 0 }, { 0x1FBC, 0, 0 }, { 0x03B1, 0x03B9, 0 } # 124| "\x1f\xb4\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0386, 0x0399, 0 }, { 0x1FB4, 0, 0 }, { 0x0386, 0x0345, 0 }, { 0x03AC, 0x03B9, 0 } # 125|-> "\x1f\xb6\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0391, 0x0342, 0 }, { 0x1FB6, 0, 0 }, { 0x0391, 0x0342, 0 }, { 0x03B1, 0x0342, 0 } # 126| "\x1f\xb7\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0391, 0x0342, 0x0399 }, { 0x1FB7, 0, 0 }, { 0x0391, 0x0342, 0x0345 }, { 0x03B1, 0x0342, 0x03B9 } # 127| "\x1f\xbc\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0391, 0x0399, 0 }, { 0x1FB3, 0, 0 }, { 0x1FBC, 0, 0 }, { 0x03B1, 0x03B9, 0 } Error: COMPILER_WARNING: [#def170] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:126:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 126 | "\x1f\xb7\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0391, 0x0342, 0x0399 }, { 0x1FB7, 0, 0 }, { 0x0391, 0x0342, 0x0345 }, { 0x03B1, 0x0342, 0x03B9 } # | ^~~~~~~~~~~~~~ # 124| "\x1f\xb4\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0386, 0x0399, 0 }, { 0x1FB4, 0, 0 }, { 0x0386, 0x0345, 0 }, { 0x03AC, 0x03B9, 0 } # 125| "\x1f\xb6\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0391, 0x0342, 0 }, { 0x1FB6, 0, 0 }, { 0x0391, 0x0342, 0 }, { 0x03B1, 0x0342, 0 } # 126|-> "\x1f\xb7\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0391, 0x0342, 0x0399 }, { 0x1FB7, 0, 0 }, { 0x0391, 0x0342, 0x0345 }, { 0x03B1, 0x0342, 0x03B9 } # 127| "\x1f\xbc\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0391, 0x0399, 0 }, { 0x1FB3, 0, 0 }, { 0x1FBC, 0, 0 }, { 0x03B1, 0x03B9, 0 } # 128| "\x1f\xc2\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1FCA, 0x0399, 0 }, { 0x1FC2, 0, 0 }, { 0x1FCA, 0x0345, 0 }, { 0x1F74, 0x03B9, 0 } Error: COMPILER_WARNING: [#def171] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:127:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 127 | "\x1f\xbc\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0391, 0x0399, 0 }, { 0x1FB3, 0, 0 }, { 0x1FBC, 0, 0 }, { 0x03B1, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 125| "\x1f\xb6\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0391, 0x0342, 0 }, { 0x1FB6, 0, 0 }, { 0x0391, 0x0342, 0 }, { 0x03B1, 0x0342, 0 } # 126| "\x1f\xb7\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0391, 0x0342, 0x0399 }, { 0x1FB7, 0, 0 }, { 0x0391, 0x0342, 0x0345 }, { 0x03B1, 0x0342, 0x03B9 } # 127|-> "\x1f\xbc\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0391, 0x0399, 0 }, { 0x1FB3, 0, 0 }, { 0x1FBC, 0, 0 }, { 0x03B1, 0x03B9, 0 } # 128| "\x1f\xc2\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1FCA, 0x0399, 0 }, { 0x1FC2, 0, 0 }, { 0x1FCA, 0x0345, 0 }, { 0x1F74, 0x03B9, 0 } # 129| "\x1f\xc3\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0397, 0x0399, 0 }, { 0x1FC3, 0, 0 }, { 0x1FCC, 0, 0 }, { 0x03B7, 0x03B9, 0 } Error: COMPILER_WARNING: [#def172] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:128:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 128 | "\x1f\xc2\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1FCA, 0x0399, 0 }, { 0x1FC2, 0, 0 }, { 0x1FCA, 0x0345, 0 }, { 0x1F74, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 126| "\x1f\xb7\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0391, 0x0342, 0x0399 }, { 0x1FB7, 0, 0 }, { 0x0391, 0x0342, 0x0345 }, { 0x03B1, 0x0342, 0x03B9 } # 127| "\x1f\xbc\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0391, 0x0399, 0 }, { 0x1FB3, 0, 0 }, { 0x1FBC, 0, 0 }, { 0x03B1, 0x03B9, 0 } # 128|-> "\x1f\xc2\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1FCA, 0x0399, 0 }, { 0x1FC2, 0, 0 }, { 0x1FCA, 0x0345, 0 }, { 0x1F74, 0x03B9, 0 } # 129| "\x1f\xc3\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0397, 0x0399, 0 }, { 0x1FC3, 0, 0 }, { 0x1FCC, 0, 0 }, { 0x03B7, 0x03B9, 0 } # 130| "\x1f\xc4\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0389, 0x0399, 0 }, { 0x1FC4, 0, 0 }, { 0x0389, 0x0345, 0 }, { 0x03AE, 0x03B9, 0 } Error: COMPILER_WARNING: [#def173] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:129:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 129 | "\x1f\xc3\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0397, 0x0399, 0 }, { 0x1FC3, 0, 0 }, { 0x1FCC, 0, 0 }, { 0x03B7, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 127| "\x1f\xbc\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0391, 0x0399, 0 }, { 0x1FB3, 0, 0 }, { 0x1FBC, 0, 0 }, { 0x03B1, 0x03B9, 0 } # 128| "\x1f\xc2\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1FCA, 0x0399, 0 }, { 0x1FC2, 0, 0 }, { 0x1FCA, 0x0345, 0 }, { 0x1F74, 0x03B9, 0 } # 129|-> "\x1f\xc3\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0397, 0x0399, 0 }, { 0x1FC3, 0, 0 }, { 0x1FCC, 0, 0 }, { 0x03B7, 0x03B9, 0 } # 130| "\x1f\xc4\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0389, 0x0399, 0 }, { 0x1FC4, 0, 0 }, { 0x0389, 0x0345, 0 }, { 0x03AE, 0x03B9, 0 } # 131| "\x1f\xc6\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0397, 0x0342, 0 }, { 0x1FC6, 0, 0 }, { 0x0397, 0x0342, 0 }, { 0x03B7, 0x0342, 0 } Error: COMPILER_WARNING: [#def174] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:130:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 130 | "\x1f\xc4\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0389, 0x0399, 0 }, { 0x1FC4, 0, 0 }, { 0x0389, 0x0345, 0 }, { 0x03AE, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 128| "\x1f\xc2\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1FCA, 0x0399, 0 }, { 0x1FC2, 0, 0 }, { 0x1FCA, 0x0345, 0 }, { 0x1F74, 0x03B9, 0 } # 129| "\x1f\xc3\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0397, 0x0399, 0 }, { 0x1FC3, 0, 0 }, { 0x1FCC, 0, 0 }, { 0x03B7, 0x03B9, 0 } # 130|-> "\x1f\xc4\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0389, 0x0399, 0 }, { 0x1FC4, 0, 0 }, { 0x0389, 0x0345, 0 }, { 0x03AE, 0x03B9, 0 } # 131| "\x1f\xc6\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0397, 0x0342, 0 }, { 0x1FC6, 0, 0 }, { 0x0397, 0x0342, 0 }, { 0x03B7, 0x0342, 0 } # 132| "\x1f\xc7\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0397, 0x0342, 0x0399 }, { 0x1FC7, 0, 0 }, { 0x0397, 0x0342, 0x0345 }, { 0x03B7, 0x0342, 0x03B9 } Error: COMPILER_WARNING: [#def175] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:131:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 131 | "\x1f\xc6\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0397, 0x0342, 0 }, { 0x1FC6, 0, 0 }, { 0x0397, 0x0342, 0 }, { 0x03B7, 0x0342, 0 } # | ^~~~~~~~~~~~~~ # 129| "\x1f\xc3\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0397, 0x0399, 0 }, { 0x1FC3, 0, 0 }, { 0x1FCC, 0, 0 }, { 0x03B7, 0x03B9, 0 } # 130| "\x1f\xc4\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0389, 0x0399, 0 }, { 0x1FC4, 0, 0 }, { 0x0389, 0x0345, 0 }, { 0x03AE, 0x03B9, 0 } # 131|-> "\x1f\xc6\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0397, 0x0342, 0 }, { 0x1FC6, 0, 0 }, { 0x0397, 0x0342, 0 }, { 0x03B7, 0x0342, 0 } # 132| "\x1f\xc7\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0397, 0x0342, 0x0399 }, { 0x1FC7, 0, 0 }, { 0x0397, 0x0342, 0x0345 }, { 0x03B7, 0x0342, 0x03B9 } # 133| "\x1f\xcc\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0397, 0x0399, 0 }, { 0x1FC3, 0, 0 }, { 0x1FCC, 0, 0 }, { 0x03B7, 0x03B9, 0 } Error: COMPILER_WARNING: [#def176] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:132:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 132 | "\x1f\xc7\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0397, 0x0342, 0x0399 }, { 0x1FC7, 0, 0 }, { 0x0397, 0x0342, 0x0345 }, { 0x03B7, 0x0342, 0x03B9 } # | ^~~~~~~~~~~~~~ # 130| "\x1f\xc4\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0389, 0x0399, 0 }, { 0x1FC4, 0, 0 }, { 0x0389, 0x0345, 0 }, { 0x03AE, 0x03B9, 0 } # 131| "\x1f\xc6\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0397, 0x0342, 0 }, { 0x1FC6, 0, 0 }, { 0x0397, 0x0342, 0 }, { 0x03B7, 0x0342, 0 } # 132|-> "\x1f\xc7\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0397, 0x0342, 0x0399 }, { 0x1FC7, 0, 0 }, { 0x0397, 0x0342, 0x0345 }, { 0x03B7, 0x0342, 0x03B9 } # 133| "\x1f\xcc\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0397, 0x0399, 0 }, { 0x1FC3, 0, 0 }, { 0x1FCC, 0, 0 }, { 0x03B7, 0x03B9, 0 } # 134| "\x1f\xd2\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0399, 0x0308, 0x0300 }, { 0x1FD2, 0, 0 }, { 0x0399, 0x0308, 0x0300 }, { 0x03B9, 0x0308, 0x0300 } Error: COMPILER_WARNING: [#def177] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:133:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 133 | "\x1f\xcc\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0397, 0x0399, 0 }, { 0x1FC3, 0, 0 }, { 0x1FCC, 0, 0 }, { 0x03B7, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 131| "\x1f\xc6\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0397, 0x0342, 0 }, { 0x1FC6, 0, 0 }, { 0x0397, 0x0342, 0 }, { 0x03B7, 0x0342, 0 } # 132| "\x1f\xc7\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0397, 0x0342, 0x0399 }, { 0x1FC7, 0, 0 }, { 0x0397, 0x0342, 0x0345 }, { 0x03B7, 0x0342, 0x03B9 } # 133|-> "\x1f\xcc\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0397, 0x0399, 0 }, { 0x1FC3, 0, 0 }, { 0x1FCC, 0, 0 }, { 0x03B7, 0x03B9, 0 } # 134| "\x1f\xd2\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0399, 0x0308, 0x0300 }, { 0x1FD2, 0, 0 }, { 0x0399, 0x0308, 0x0300 }, { 0x03B9, 0x0308, 0x0300 } # 135| "\x1f\xd3\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0399, 0x0308, 0x0301 }, { 0x1FD3, 0, 0 }, { 0x0399, 0x0308, 0x0301 }, { 0x03B9, 0x0308, 0x0301 } Error: COMPILER_WARNING: [#def178] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:134:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 134 | "\x1f\xd2\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0399, 0x0308, 0x0300 }, { 0x1FD2, 0, 0 }, { 0x0399, 0x0308, 0x0300 }, { 0x03B9, 0x0308, 0x0300 } # | ^~~~~~~~~~~~~~ # 132| "\x1f\xc7\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0397, 0x0342, 0x0399 }, { 0x1FC7, 0, 0 }, { 0x0397, 0x0342, 0x0345 }, { 0x03B7, 0x0342, 0x03B9 } # 133| "\x1f\xcc\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0397, 0x0399, 0 }, { 0x1FC3, 0, 0 }, { 0x1FCC, 0, 0 }, { 0x03B7, 0x03B9, 0 } # 134|-> "\x1f\xd2\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0399, 0x0308, 0x0300 }, { 0x1FD2, 0, 0 }, { 0x0399, 0x0308, 0x0300 }, { 0x03B9, 0x0308, 0x0300 } # 135| "\x1f\xd3\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0399, 0x0308, 0x0301 }, { 0x1FD3, 0, 0 }, { 0x0399, 0x0308, 0x0301 }, { 0x03B9, 0x0308, 0x0301 } # 136| "\x1f\xd6\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0399, 0x0342, 0 }, { 0x1FD6, 0, 0 }, { 0x0399, 0x0342, 0 }, { 0x03B9, 0x0342, 0 } Error: COMPILER_WARNING: [#def179] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:135:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 135 | "\x1f\xd3\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0399, 0x0308, 0x0301 }, { 0x1FD3, 0, 0 }, { 0x0399, 0x0308, 0x0301 }, { 0x03B9, 0x0308, 0x0301 } # | ^~~~~~~~~~~~~~ # 133| "\x1f\xcc\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0397, 0x0399, 0 }, { 0x1FC3, 0, 0 }, { 0x1FCC, 0, 0 }, { 0x03B7, 0x03B9, 0 } # 134| "\x1f\xd2\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0399, 0x0308, 0x0300 }, { 0x1FD2, 0, 0 }, { 0x0399, 0x0308, 0x0300 }, { 0x03B9, 0x0308, 0x0300 } # 135|-> "\x1f\xd3\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0399, 0x0308, 0x0301 }, { 0x1FD3, 0, 0 }, { 0x0399, 0x0308, 0x0301 }, { 0x03B9, 0x0308, 0x0301 } # 136| "\x1f\xd6\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0399, 0x0342, 0 }, { 0x1FD6, 0, 0 }, { 0x0399, 0x0342, 0 }, { 0x03B9, 0x0342, 0 } # 137| "\x1f\xd7\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0399, 0x0308, 0x0342 }, { 0x1FD7, 0, 0 }, { 0x0399, 0x0308, 0x0342 }, { 0x03B9, 0x0308, 0x0342 } Error: COMPILER_WARNING: [#def180] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:136:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 136 | "\x1f\xd6\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0399, 0x0342, 0 }, { 0x1FD6, 0, 0 }, { 0x0399, 0x0342, 0 }, { 0x03B9, 0x0342, 0 } # | ^~~~~~~~~~~~~~ # 134| "\x1f\xd2\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0399, 0x0308, 0x0300 }, { 0x1FD2, 0, 0 }, { 0x0399, 0x0308, 0x0300 }, { 0x03B9, 0x0308, 0x0300 } # 135| "\x1f\xd3\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0399, 0x0308, 0x0301 }, { 0x1FD3, 0, 0 }, { 0x0399, 0x0308, 0x0301 }, { 0x03B9, 0x0308, 0x0301 } # 136|-> "\x1f\xd6\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0399, 0x0342, 0 }, { 0x1FD6, 0, 0 }, { 0x0399, 0x0342, 0 }, { 0x03B9, 0x0342, 0 } # 137| "\x1f\xd7\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0399, 0x0308, 0x0342 }, { 0x1FD7, 0, 0 }, { 0x0399, 0x0308, 0x0342 }, { 0x03B9, 0x0308, 0x0342 } # 138| "\x1f\xe2\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0308, 0x0300 }, { 0x1FE2, 0, 0 }, { 0x03A5, 0x0308, 0x0300 }, { 0x03C5, 0x0308, 0x0300 } Error: COMPILER_WARNING: [#def181] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:137:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 137 | "\x1f\xd7\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0399, 0x0308, 0x0342 }, { 0x1FD7, 0, 0 }, { 0x0399, 0x0308, 0x0342 }, { 0x03B9, 0x0308, 0x0342 } # | ^~~~~~~~~~~~~~ # 135| "\x1f\xd3\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0399, 0x0308, 0x0301 }, { 0x1FD3, 0, 0 }, { 0x0399, 0x0308, 0x0301 }, { 0x03B9, 0x0308, 0x0301 } # 136| "\x1f\xd6\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0399, 0x0342, 0 }, { 0x1FD6, 0, 0 }, { 0x0399, 0x0342, 0 }, { 0x03B9, 0x0342, 0 } # 137|-> "\x1f\xd7\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0399, 0x0308, 0x0342 }, { 0x1FD7, 0, 0 }, { 0x0399, 0x0308, 0x0342 }, { 0x03B9, 0x0308, 0x0342 } # 138| "\x1f\xe2\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0308, 0x0300 }, { 0x1FE2, 0, 0 }, { 0x03A5, 0x0308, 0x0300 }, { 0x03C5, 0x0308, 0x0300 } # 139| "\x1f\xe3\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0308, 0x0301 }, { 0x1FE3, 0, 0 }, { 0x03A5, 0x0308, 0x0301 }, { 0x03C5, 0x0308, 0x0301 } Error: COMPILER_WARNING: [#def182] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:138:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 138 | "\x1f\xe2\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0308, 0x0300 }, { 0x1FE2, 0, 0 }, { 0x03A5, 0x0308, 0x0300 }, { 0x03C5, 0x0308, 0x0300 } # | ^~~~~~~~~~~~~~ # 136| "\x1f\xd6\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0399, 0x0342, 0 }, { 0x1FD6, 0, 0 }, { 0x0399, 0x0342, 0 }, { 0x03B9, 0x0342, 0 } # 137| "\x1f\xd7\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0399, 0x0308, 0x0342 }, { 0x1FD7, 0, 0 }, { 0x0399, 0x0308, 0x0342 }, { 0x03B9, 0x0308, 0x0342 } # 138|-> "\x1f\xe2\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0308, 0x0300 }, { 0x1FE2, 0, 0 }, { 0x03A5, 0x0308, 0x0300 }, { 0x03C5, 0x0308, 0x0300 } # 139| "\x1f\xe3\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0308, 0x0301 }, { 0x1FE3, 0, 0 }, { 0x03A5, 0x0308, 0x0301 }, { 0x03C5, 0x0308, 0x0301 } # 140| "\x1f\xe4\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A1, 0x0313, 0 }, { 0x1FE4, 0, 0 }, { 0x03A1, 0x0313, 0 }, { 0x03C1, 0x0313, 0 } Error: COMPILER_WARNING: [#def183] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:139:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 139 | "\x1f\xe3\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0308, 0x0301 }, { 0x1FE3, 0, 0 }, { 0x03A5, 0x0308, 0x0301 }, { 0x03C5, 0x0308, 0x0301 } # | ^~~~~~~~~~~~~~ # 137| "\x1f\xd7\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0399, 0x0308, 0x0342 }, { 0x1FD7, 0, 0 }, { 0x0399, 0x0308, 0x0342 }, { 0x03B9, 0x0308, 0x0342 } # 138| "\x1f\xe2\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0308, 0x0300 }, { 0x1FE2, 0, 0 }, { 0x03A5, 0x0308, 0x0300 }, { 0x03C5, 0x0308, 0x0300 } # 139|-> "\x1f\xe3\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0308, 0x0301 }, { 0x1FE3, 0, 0 }, { 0x03A5, 0x0308, 0x0301 }, { 0x03C5, 0x0308, 0x0301 } # 140| "\x1f\xe4\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A1, 0x0313, 0 }, { 0x1FE4, 0, 0 }, { 0x03A1, 0x0313, 0 }, { 0x03C1, 0x0313, 0 } # 141| "\x1f\xe6\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0342, 0 }, { 0x1FE6, 0, 0 }, { 0x03A5, 0x0342, 0 }, { 0x03C5, 0x0342, 0 } Error: COMPILER_WARNING: [#def184] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:140:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 140 | "\x1f\xe4\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A1, 0x0313, 0 }, { 0x1FE4, 0, 0 }, { 0x03A1, 0x0313, 0 }, { 0x03C1, 0x0313, 0 } # | ^~~~~~~~~~~~~~ # 138| "\x1f\xe2\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0308, 0x0300 }, { 0x1FE2, 0, 0 }, { 0x03A5, 0x0308, 0x0300 }, { 0x03C5, 0x0308, 0x0300 } # 139| "\x1f\xe3\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0308, 0x0301 }, { 0x1FE3, 0, 0 }, { 0x03A5, 0x0308, 0x0301 }, { 0x03C5, 0x0308, 0x0301 } # 140|-> "\x1f\xe4\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A1, 0x0313, 0 }, { 0x1FE4, 0, 0 }, { 0x03A1, 0x0313, 0 }, { 0x03C1, 0x0313, 0 } # 141| "\x1f\xe6\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0342, 0 }, { 0x1FE6, 0, 0 }, { 0x03A5, 0x0342, 0 }, { 0x03C5, 0x0342, 0 } # 142| "\x1f\xe7\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0308, 0x0342 }, { 0x1FE7, 0, 0 }, { 0x03A5, 0x0308, 0x0342 }, { 0x03C5, 0x0308, 0x0342 } Error: COMPILER_WARNING: [#def185] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:141:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 141 | "\x1f\xe6\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0342, 0 }, { 0x1FE6, 0, 0 }, { 0x03A5, 0x0342, 0 }, { 0x03C5, 0x0342, 0 } # | ^~~~~~~~~~~~~~ # 139| "\x1f\xe3\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0308, 0x0301 }, { 0x1FE3, 0, 0 }, { 0x03A5, 0x0308, 0x0301 }, { 0x03C5, 0x0308, 0x0301 } # 140| "\x1f\xe4\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A1, 0x0313, 0 }, { 0x1FE4, 0, 0 }, { 0x03A1, 0x0313, 0 }, { 0x03C1, 0x0313, 0 } # 141|-> "\x1f\xe6\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0342, 0 }, { 0x1FE6, 0, 0 }, { 0x03A5, 0x0342, 0 }, { 0x03C5, 0x0342, 0 } # 142| "\x1f\xe7\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0308, 0x0342 }, { 0x1FE7, 0, 0 }, { 0x03A5, 0x0308, 0x0342 }, { 0x03C5, 0x0308, 0x0342 } # 143| "\x1f\xf2\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1FFA, 0x0399, 0 }, { 0x1FF2, 0, 0 }, { 0x1FFA, 0x0345, 0 }, { 0x1F7C, 0x03B9, 0 } Error: COMPILER_WARNING: [#def186] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:142:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 142 | "\x1f\xe7\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0308, 0x0342 }, { 0x1FE7, 0, 0 }, { 0x03A5, 0x0308, 0x0342 }, { 0x03C5, 0x0308, 0x0342 } # | ^~~~~~~~~~~~~~ # 140| "\x1f\xe4\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A1, 0x0313, 0 }, { 0x1FE4, 0, 0 }, { 0x03A1, 0x0313, 0 }, { 0x03C1, 0x0313, 0 } # 141| "\x1f\xe6\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0342, 0 }, { 0x1FE6, 0, 0 }, { 0x03A5, 0x0342, 0 }, { 0x03C5, 0x0342, 0 } # 142|-> "\x1f\xe7\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0308, 0x0342 }, { 0x1FE7, 0, 0 }, { 0x03A5, 0x0308, 0x0342 }, { 0x03C5, 0x0308, 0x0342 } # 143| "\x1f\xf2\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1FFA, 0x0399, 0 }, { 0x1FF2, 0, 0 }, { 0x1FFA, 0x0345, 0 }, { 0x1F7C, 0x03B9, 0 } # 144| "\x1f\xf3\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A9, 0x0399, 0 }, { 0x1FF3, 0, 0 }, { 0x1FFC, 0, 0 }, { 0x03C9, 0x03B9, 0 } Error: COMPILER_WARNING: [#def187] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:143:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 143 | "\x1f\xf2\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1FFA, 0x0399, 0 }, { 0x1FF2, 0, 0 }, { 0x1FFA, 0x0345, 0 }, { 0x1F7C, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 141| "\x1f\xe6\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0342, 0 }, { 0x1FE6, 0, 0 }, { 0x03A5, 0x0342, 0 }, { 0x03C5, 0x0342, 0 } # 142| "\x1f\xe7\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0308, 0x0342 }, { 0x1FE7, 0, 0 }, { 0x03A5, 0x0308, 0x0342 }, { 0x03C5, 0x0308, 0x0342 } # 143|-> "\x1f\xf2\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1FFA, 0x0399, 0 }, { 0x1FF2, 0, 0 }, { 0x1FFA, 0x0345, 0 }, { 0x1F7C, 0x03B9, 0 } # 144| "\x1f\xf3\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A9, 0x0399, 0 }, { 0x1FF3, 0, 0 }, { 0x1FFC, 0, 0 }, { 0x03C9, 0x03B9, 0 } # 145| "\x1f\xf4\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x038F, 0x0399, 0 }, { 0x1FF4, 0, 0 }, { 0x038F, 0x0345, 0 }, { 0x03CE, 0x03B9, 0 } Error: COMPILER_WARNING: [#def188] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:144:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 144 | "\x1f\xf3\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A9, 0x0399, 0 }, { 0x1FF3, 0, 0 }, { 0x1FFC, 0, 0 }, { 0x03C9, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 142| "\x1f\xe7\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A5, 0x0308, 0x0342 }, { 0x1FE7, 0, 0 }, { 0x03A5, 0x0308, 0x0342 }, { 0x03C5, 0x0308, 0x0342 } # 143| "\x1f\xf2\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1FFA, 0x0399, 0 }, { 0x1FF2, 0, 0 }, { 0x1FFA, 0x0345, 0 }, { 0x1F7C, 0x03B9, 0 } # 144|-> "\x1f\xf3\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A9, 0x0399, 0 }, { 0x1FF3, 0, 0 }, { 0x1FFC, 0, 0 }, { 0x03C9, 0x03B9, 0 } # 145| "\x1f\xf4\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x038F, 0x0399, 0 }, { 0x1FF4, 0, 0 }, { 0x038F, 0x0345, 0 }, { 0x03CE, 0x03B9, 0 } # 146| "\x1f\xf6\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A9, 0x0342, 0 }, { 0x1FF6, 0, 0 }, { 0x03A9, 0x0342, 0 }, { 0x03C9, 0x0342, 0 } Error: COMPILER_WARNING: [#def189] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:145:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 145 | "\x1f\xf4\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x038F, 0x0399, 0 }, { 0x1FF4, 0, 0 }, { 0x038F, 0x0345, 0 }, { 0x03CE, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 143| "\x1f\xf2\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x1FFA, 0x0399, 0 }, { 0x1FF2, 0, 0 }, { 0x1FFA, 0x0345, 0 }, { 0x1F7C, 0x03B9, 0 } # 144| "\x1f\xf3\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A9, 0x0399, 0 }, { 0x1FF3, 0, 0 }, { 0x1FFC, 0, 0 }, { 0x03C9, 0x03B9, 0 } # 145|-> "\x1f\xf4\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x038F, 0x0399, 0 }, { 0x1FF4, 0, 0 }, { 0x038F, 0x0345, 0 }, { 0x03CE, 0x03B9, 0 } # 146| "\x1f\xf6\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A9, 0x0342, 0 }, { 0x1FF6, 0, 0 }, { 0x03A9, 0x0342, 0 }, { 0x03C9, 0x0342, 0 } # 147| "\x1f\xf7\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A9, 0x0342, 0x0399 }, { 0x1FF7, 0, 0 }, { 0x03A9, 0x0342, 0x0345 }, { 0x03C9, 0x0342, 0x03B9 } Error: COMPILER_WARNING: [#def190] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:146:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 146 | "\x1f\xf6\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A9, 0x0342, 0 }, { 0x1FF6, 0, 0 }, { 0x03A9, 0x0342, 0 }, { 0x03C9, 0x0342, 0 } # | ^~~~~~~~~~~~~~ # 144| "\x1f\xf3\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A9, 0x0399, 0 }, { 0x1FF3, 0, 0 }, { 0x1FFC, 0, 0 }, { 0x03C9, 0x03B9, 0 } # 145| "\x1f\xf4\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x038F, 0x0399, 0 }, { 0x1FF4, 0, 0 }, { 0x038F, 0x0345, 0 }, { 0x03CE, 0x03B9, 0 } # 146|-> "\x1f\xf6\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A9, 0x0342, 0 }, { 0x1FF6, 0, 0 }, { 0x03A9, 0x0342, 0 }, { 0x03C9, 0x0342, 0 } # 147| "\x1f\xf7\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A9, 0x0342, 0x0399 }, { 0x1FF7, 0, 0 }, { 0x03A9, 0x0342, 0x0345 }, { 0x03C9, 0x0342, 0x03B9 } # 148| "\x1f\xfc\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A9, 0x0399, 0 }, { 0x1FF3, 0, 0 }, { 0x1FFC, 0, 0 }, { 0x03C9, 0x03B9, 0 } Error: COMPILER_WARNING: [#def191] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:147:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 147 | "\x1f\xf7\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A9, 0x0342, 0x0399 }, { 0x1FF7, 0, 0 }, { 0x03A9, 0x0342, 0x0345 }, { 0x03C9, 0x0342, 0x03B9 } # | ^~~~~~~~~~~~~~ # 145| "\x1f\xf4\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x038F, 0x0399, 0 }, { 0x1FF4, 0, 0 }, { 0x038F, 0x0345, 0 }, { 0x03CE, 0x03B9, 0 } # 146| "\x1f\xf6\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A9, 0x0342, 0 }, { 0x1FF6, 0, 0 }, { 0x03A9, 0x0342, 0 }, { 0x03C9, 0x0342, 0 } # 147|-> "\x1f\xf7\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A9, 0x0342, 0x0399 }, { 0x1FF7, 0, 0 }, { 0x03A9, 0x0342, 0x0345 }, { 0x03C9, 0x0342, 0x03B9 } # 148| "\x1f\xfc\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A9, 0x0399, 0 }, { 0x1FF3, 0, 0 }, { 0x1FFC, 0, 0 }, { 0x03C9, 0x03B9, 0 } # 149| "\xfb\x00\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0046, 0x0046, 0 }, { 0xFB00, 0, 0 }, { 0x0046, 0x0066, 0 }, { 0x0066, 0x0066, 0 } Error: COMPILER_WARNING: [#def192] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:148:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 148 | "\x1f\xfc\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A9, 0x0399, 0 }, { 0x1FF3, 0, 0 }, { 0x1FFC, 0, 0 }, { 0x03C9, 0x03B9, 0 } # | ^~~~~~~~~~~~~~ # 146| "\x1f\xf6\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A9, 0x0342, 0 }, { 0x1FF6, 0, 0 }, { 0x03A9, 0x0342, 0 }, { 0x03C9, 0x0342, 0 } # 147| "\x1f\xf7\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A9, 0x0342, 0x0399 }, { 0x1FF7, 0, 0 }, { 0x03A9, 0x0342, 0x0345 }, { 0x03C9, 0x0342, 0x03B9 } # 148|-> "\x1f\xfc\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A9, 0x0399, 0 }, { 0x1FF3, 0, 0 }, { 0x1FFC, 0, 0 }, { 0x03C9, 0x03B9, 0 } # 149| "\xfb\x00\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0046, 0x0046, 0 }, { 0xFB00, 0, 0 }, { 0x0046, 0x0066, 0 }, { 0x0066, 0x0066, 0 } # 150| "\xfb\x01\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0046, 0x0049, 0 }, { 0xFB01, 0, 0 }, { 0x0046, 0x0069, 0 }, { 0x0066, 0x0069, 0 } Error: COMPILER_WARNING: [#def193] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:149:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 149 | "\xfb\x00\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0046, 0x0046, 0 }, { 0xFB00, 0, 0 }, { 0x0046, 0x0066, 0 }, { 0x0066, 0x0066, 0 } # | ^~~~~~~~~~~~~~ # 147| "\x1f\xf7\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A9, 0x0342, 0x0399 }, { 0x1FF7, 0, 0 }, { 0x03A9, 0x0342, 0x0345 }, { 0x03C9, 0x0342, 0x03B9 } # 148| "\x1f\xfc\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A9, 0x0399, 0 }, { 0x1FF3, 0, 0 }, { 0x1FFC, 0, 0 }, { 0x03C9, 0x03B9, 0 } # 149|-> "\xfb\x00\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0046, 0x0046, 0 }, { 0xFB00, 0, 0 }, { 0x0046, 0x0066, 0 }, { 0x0066, 0x0066, 0 } # 150| "\xfb\x01\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0046, 0x0049, 0 }, { 0xFB01, 0, 0 }, { 0x0046, 0x0069, 0 }, { 0x0066, 0x0069, 0 } # 151| "\xfb\x02\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0046, 0x004C, 0 }, { 0xFB02, 0, 0 }, { 0x0046, 0x006C, 0 }, { 0x0066, 0x006C, 0 } Error: COMPILER_WARNING: [#def194] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing.c:33: included_from: Included from here. gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf: scope_hint: In function 'gl_unicase_special_lookup' gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:150:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 150 | "\xfb\x01\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0046, 0x0049, 0 }, { 0xFB01, 0, 0 }, { 0x0046, 0x0069, 0 }, { 0x0066, 0x0069, 0 } # | ^~~~~~~~~~~~~~ # 148| "\x1f\xfc\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x03A9, 0x0399, 0 }, { 0x1FF3, 0, 0 }, { 0x1FFC, 0, 0 }, { 0x03C9, 0x03B9, 0 } # 149| "\xfb\x00\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0046, 0x0046, 0 }, { 0xFB00, 0, 0 }, { 0x0046, 0x0066, 0 }, { 0x0066, 0x0066, 0 } # 150|-> "\xfb\x01\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0046, 0x0049, 0 }, { 0xFB01, 0, 0 }, { 0x0046, 0x0069, 0 }, { 0x0066, 0x0069, 0 } # 151| "\xfb\x02\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0046, 0x004C, 0 }, { 0xFB02, 0, 0 }, { 0x0046, 0x006C, 0 }, { 0x0066, 0x006C, 0 } # 152| "\xfb\x03\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0046, 0x0046, 0x0049 }, { 0xFB03, 0, 0 }, { 0x0046, 0x0066, 0x0069 }, { 0x0066, 0x0066, 0x0069 } Error: COMPILER_WARNING: [#def195] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:151:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 151 | "\xfb\x02\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0046, 0x004C, 0 }, { 0xFB02, 0, 0 }, { 0x0046, 0x006C, 0 }, { 0x0066, 0x006C, 0 } # | ^~~~~~~~~~~~~~ # 149| "\xfb\x00\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0046, 0x0046, 0 }, { 0xFB00, 0, 0 }, { 0x0046, 0x0066, 0 }, { 0x0066, 0x0066, 0 } # 150| "\xfb\x01\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0046, 0x0049, 0 }, { 0xFB01, 0, 0 }, { 0x0046, 0x0069, 0 }, { 0x0066, 0x0069, 0 } # 151|-> "\xfb\x02\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0046, 0x004C, 0 }, { 0xFB02, 0, 0 }, { 0x0046, 0x006C, 0 }, { 0x0066, 0x006C, 0 } # 152| "\xfb\x03\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0046, 0x0046, 0x0049 }, { 0xFB03, 0, 0 }, { 0x0046, 0x0066, 0x0069 }, { 0x0066, 0x0066, 0x0069 } # 153| "\xfb\x04\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0046, 0x0046, 0x004C }, { 0xFB04, 0, 0 }, { 0x0046, 0x0066, 0x006C }, { 0x0066, 0x0066, 0x006C } Error: COMPILER_WARNING: [#def196] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:152:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 152 | "\xfb\x03\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0046, 0x0046, 0x0049 }, { 0xFB03, 0, 0 }, { 0x0046, 0x0066, 0x0069 }, { 0x0066, 0x0066, 0x0069 } # | ^~~~~~~~~~~~~~ # 150| "\xfb\x01\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0046, 0x0049, 0 }, { 0xFB01, 0, 0 }, { 0x0046, 0x0069, 0 }, { 0x0066, 0x0069, 0 } # 151| "\xfb\x02\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0046, 0x004C, 0 }, { 0xFB02, 0, 0 }, { 0x0046, 0x006C, 0 }, { 0x0066, 0x006C, 0 } # 152|-> "\xfb\x03\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0046, 0x0046, 0x0049 }, { 0xFB03, 0, 0 }, { 0x0046, 0x0066, 0x0069 }, { 0x0066, 0x0066, 0x0069 } # 153| "\xfb\x04\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0046, 0x0046, 0x004C }, { 0xFB04, 0, 0 }, { 0x0046, 0x0066, 0x006C }, { 0x0066, 0x0066, 0x006C } # 154| "\xfb\x05\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0053, 0x0054, 0 }, { 0xFB05, 0, 0 }, { 0x0053, 0x0074, 0 }, { 0x0073, 0x0074, 0 } Error: COMPILER_WARNING: [#def197] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:153:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 153 | "\xfb\x04\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0046, 0x0046, 0x004C }, { 0xFB04, 0, 0 }, { 0x0046, 0x0066, 0x006C }, { 0x0066, 0x0066, 0x006C } # | ^~~~~~~~~~~~~~ # 151| "\xfb\x02\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0046, 0x004C, 0 }, { 0xFB02, 0, 0 }, { 0x0046, 0x006C, 0 }, { 0x0066, 0x006C, 0 } # 152| "\xfb\x03\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0046, 0x0046, 0x0049 }, { 0xFB03, 0, 0 }, { 0x0046, 0x0066, 0x0069 }, { 0x0066, 0x0066, 0x0069 } # 153|-> "\xfb\x04\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0046, 0x0046, 0x004C }, { 0xFB04, 0, 0 }, { 0x0046, 0x0066, 0x006C }, { 0x0066, 0x0066, 0x006C } # 154| "\xfb\x05\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0053, 0x0054, 0 }, { 0xFB05, 0, 0 }, { 0x0053, 0x0074, 0 }, { 0x0073, 0x0074, 0 } # 155| "\xfb\x06\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0053, 0x0054, 0 }, { 0xFB06, 0, 0 }, { 0x0053, 0x0074, 0 }, { 0x0073, 0x0074, 0 } Error: COMPILER_WARNING: [#def198] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:154:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 154 | "\xfb\x05\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0053, 0x0054, 0 }, { 0xFB05, 0, 0 }, { 0x0053, 0x0074, 0 }, { 0x0073, 0x0074, 0 } # | ^~~~~~~~~~~~~~ # 152| "\xfb\x03\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0046, 0x0046, 0x0049 }, { 0xFB03, 0, 0 }, { 0x0046, 0x0066, 0x0069 }, { 0x0066, 0x0066, 0x0069 } # 153| "\xfb\x04\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0046, 0x0046, 0x004C }, { 0xFB04, 0, 0 }, { 0x0046, 0x0066, 0x006C }, { 0x0066, 0x0066, 0x006C } # 154|-> "\xfb\x05\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0053, 0x0054, 0 }, { 0xFB05, 0, 0 }, { 0x0053, 0x0074, 0 }, { 0x0073, 0x0074, 0 } # 155| "\xfb\x06\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0053, 0x0054, 0 }, { 0xFB06, 0, 0 }, { 0x0053, 0x0074, 0 }, { 0x0073, 0x0074, 0 } # 156| "\xfb\x13\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0544, 0x0546, 0 }, { 0xFB13, 0, 0 }, { 0x0544, 0x0576, 0 }, { 0x0574, 0x0576, 0 } Error: COMPILER_WARNING: [#def199] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:155:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 155 | "\xfb\x06\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0053, 0x0054, 0 }, { 0xFB06, 0, 0 }, { 0x0053, 0x0074, 0 }, { 0x0073, 0x0074, 0 } # | ^~~~~~~~~~~~~~ # 153| "\xfb\x04\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0046, 0x0046, 0x004C }, { 0xFB04, 0, 0 }, { 0x0046, 0x0066, 0x006C }, { 0x0066, 0x0066, 0x006C } # 154| "\xfb\x05\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0053, 0x0054, 0 }, { 0xFB05, 0, 0 }, { 0x0053, 0x0074, 0 }, { 0x0073, 0x0074, 0 } # 155|-> "\xfb\x06\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0053, 0x0054, 0 }, { 0xFB06, 0, 0 }, { 0x0053, 0x0074, 0 }, { 0x0073, 0x0074, 0 } # 156| "\xfb\x13\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0544, 0x0546, 0 }, { 0xFB13, 0, 0 }, { 0x0544, 0x0576, 0 }, { 0x0574, 0x0576, 0 } # 157| "\xfb\x14\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0544, 0x0535, 0 }, { 0xFB14, 0, 0 }, { 0x0544, 0x0565, 0 }, { 0x0574, 0x0565, 0 } Error: COMPILER_WARNING: [#def200] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:156:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 156 | "\xfb\x13\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0544, 0x0546, 0 }, { 0xFB13, 0, 0 }, { 0x0544, 0x0576, 0 }, { 0x0574, 0x0576, 0 } # | ^~~~~~~~~~~~~~ # 154| "\xfb\x05\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0053, 0x0054, 0 }, { 0xFB05, 0, 0 }, { 0x0053, 0x0074, 0 }, { 0x0073, 0x0074, 0 } # 155| "\xfb\x06\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0053, 0x0054, 0 }, { 0xFB06, 0, 0 }, { 0x0053, 0x0074, 0 }, { 0x0073, 0x0074, 0 } # 156|-> "\xfb\x13\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0544, 0x0546, 0 }, { 0xFB13, 0, 0 }, { 0x0544, 0x0576, 0 }, { 0x0574, 0x0576, 0 } # 157| "\xfb\x14\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0544, 0x0535, 0 }, { 0xFB14, 0, 0 }, { 0x0544, 0x0565, 0 }, { 0x0574, 0x0565, 0 } # 158| "\xfb\x15\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0544, 0x053B, 0 }, { 0xFB15, 0, 0 }, { 0x0544, 0x056B, 0 }, { 0x0574, 0x056B, 0 } Error: COMPILER_WARNING: [#def201] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:157:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 157 | "\xfb\x14\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0544, 0x0535, 0 }, { 0xFB14, 0, 0 }, { 0x0544, 0x0565, 0 }, { 0x0574, 0x0565, 0 } # | ^~~~~~~~~~~~~~ # 155| "\xfb\x06\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0053, 0x0054, 0 }, { 0xFB06, 0, 0 }, { 0x0053, 0x0074, 0 }, { 0x0073, 0x0074, 0 } # 156| "\xfb\x13\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0544, 0x0546, 0 }, { 0xFB13, 0, 0 }, { 0x0544, 0x0576, 0 }, { 0x0574, 0x0576, 0 } # 157|-> "\xfb\x14\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0544, 0x0535, 0 }, { 0xFB14, 0, 0 }, { 0x0544, 0x0565, 0 }, { 0x0574, 0x0565, 0 } # 158| "\xfb\x15\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0544, 0x053B, 0 }, { 0xFB15, 0, 0 }, { 0x0544, 0x056B, 0 }, { 0x0574, 0x056B, 0 } # 159| "\xfb\x16\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x054E, 0x0546, 0 }, { 0xFB16, 0, 0 }, { 0x054E, 0x0576, 0 }, { 0x057E, 0x0576, 0 } Error: COMPILER_WARNING: [#def202] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:158:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 158 | "\xfb\x15\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0544, 0x053B, 0 }, { 0xFB15, 0, 0 }, { 0x0544, 0x056B, 0 }, { 0x0574, 0x056B, 0 } # | ^~~~~~~~~~~~~~ # 156| "\xfb\x13\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0544, 0x0546, 0 }, { 0xFB13, 0, 0 }, { 0x0544, 0x0576, 0 }, { 0x0574, 0x0576, 0 } # 157| "\xfb\x14\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0544, 0x0535, 0 }, { 0xFB14, 0, 0 }, { 0x0544, 0x0565, 0 }, { 0x0574, 0x0565, 0 } # 158|-> "\xfb\x15\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0544, 0x053B, 0 }, { 0xFB15, 0, 0 }, { 0x0544, 0x056B, 0 }, { 0x0574, 0x056B, 0 } # 159| "\xfb\x16\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x054E, 0x0546, 0 }, { 0xFB16, 0, 0 }, { 0x054E, 0x0576, 0 }, { 0x057E, 0x0576, 0 } # 160| "\xfb\x17\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0544, 0x053D, 0 }, { 0xFB17, 0, 0 }, { 0x0544, 0x056D, 0 }, { 0x0574, 0x056D, 0 } Error: COMPILER_WARNING: [#def203] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:159:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 159 | "\xfb\x16\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x054E, 0x0546, 0 }, { 0xFB16, 0, 0 }, { 0x054E, 0x0576, 0 }, { 0x057E, 0x0576, 0 } # | ^~~~~~~~~~~~~~ # 157| "\xfb\x14\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0544, 0x0535, 0 }, { 0xFB14, 0, 0 }, { 0x0544, 0x0565, 0 }, { 0x0574, 0x0565, 0 } # 158| "\xfb\x15\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0544, 0x053B, 0 }, { 0xFB15, 0, 0 }, { 0x0544, 0x056B, 0 }, { 0x0574, 0x056B, 0 } # 159|-> "\xfb\x16\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x054E, 0x0546, 0 }, { 0xFB16, 0, 0 }, { 0x054E, 0x0576, 0 }, { 0x057E, 0x0576, 0 } # 160| "\xfb\x17\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0544, 0x053D, 0 }, { 0xFB17, 0, 0 }, { 0x0544, 0x056D, 0 }, { 0x0574, 0x056D, 0 } Error: COMPILER_WARNING: [#def204] gettext-0.24/gettext-tools/gnulib-lib/unicase/special-casing-table.gperf:160:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (4 chars into 3 available) # 160 | "\xfb\x17\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0544, 0x053D, 0 }, { 0xFB17, 0, 0 }, { 0x0544, 0x056D, 0 }, { 0x0574, 0x056D, 0 } # | ^~~~~~~~~~~~~~ # 158| "\xfb\x15\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0544, 0x053B, 0 }, { 0xFB15, 0, 0 }, { 0x0544, 0x056B, 0 }, { 0x0574, 0x056B, 0 } # 159| "\xfb\x16\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x054E, 0x0546, 0 }, { 0xFB16, 0, 0 }, { 0x054E, 0x0576, 0 }, { 0x057E, 0x0576, 0 } # 160|-> "\xfb\x17\x00", 0, SCC_ALWAYS , { '\0', '\0' }, { 0x0544, 0x053D, 0 }, { 0xFB17, 0, 0 }, { 0x0544, 0x056D, 0 }, { 0x0574, 0x056D, 0 } Error: COMPILER_WARNING: [#def205] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:31:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 31 | "\x00\x00\x41\x00\x03\x00", 0x00c0 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 29| %omit-struct-type # 30| %% # 31|-> "\x00\x00\x41\x00\x03\x00", 0x00c0 # 32| "\x00\x00\x41\x00\x03\x01", 0x00c1 # 33| "\x00\x00\x41\x00\x03\x02", 0x00c2 Error: COMPILER_WARNING: [#def206] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:32:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 32 | "\x00\x00\x41\x00\x03\x01", 0x00c1 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 30| %% # 31| "\x00\x00\x41\x00\x03\x00", 0x00c0 # 32|-> "\x00\x00\x41\x00\x03\x01", 0x00c1 # 33| "\x00\x00\x41\x00\x03\x02", 0x00c2 # 34| "\x00\x00\x41\x00\x03\x03", 0x00c3 Error: COMPILER_WARNING: [#def207] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:33:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 33 | "\x00\x00\x41\x00\x03\x02", 0x00c2 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 31| "\x00\x00\x41\x00\x03\x00", 0x00c0 # 32| "\x00\x00\x41\x00\x03\x01", 0x00c1 # 33|-> "\x00\x00\x41\x00\x03\x02", 0x00c2 # 34| "\x00\x00\x41\x00\x03\x03", 0x00c3 # 35| "\x00\x00\x41\x00\x03\x08", 0x00c4 Error: COMPILER_WARNING: [#def208] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:34:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 34 | "\x00\x00\x41\x00\x03\x03", 0x00c3 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 32| "\x00\x00\x41\x00\x03\x01", 0x00c1 # 33| "\x00\x00\x41\x00\x03\x02", 0x00c2 # 34|-> "\x00\x00\x41\x00\x03\x03", 0x00c3 # 35| "\x00\x00\x41\x00\x03\x08", 0x00c4 # 36| "\x00\x00\x41\x00\x03\x0a", 0x00c5 Error: COMPILER_WARNING: [#def209] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:35:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 35 | "\x00\x00\x41\x00\x03\x08", 0x00c4 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 33| "\x00\x00\x41\x00\x03\x02", 0x00c2 # 34| "\x00\x00\x41\x00\x03\x03", 0x00c3 # 35|-> "\x00\x00\x41\x00\x03\x08", 0x00c4 # 36| "\x00\x00\x41\x00\x03\x0a", 0x00c5 # 37| "\x00\x00\x43\x00\x03\x27", 0x00c7 Error: COMPILER_WARNING: [#def210] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:36:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 36 | "\x00\x00\x41\x00\x03\x0a", 0x00c5 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 34| "\x00\x00\x41\x00\x03\x03", 0x00c3 # 35| "\x00\x00\x41\x00\x03\x08", 0x00c4 # 36|-> "\x00\x00\x41\x00\x03\x0a", 0x00c5 # 37| "\x00\x00\x43\x00\x03\x27", 0x00c7 # 38| "\x00\x00\x45\x00\x03\x00", 0x00c8 Error: COMPILER_WARNING: [#def211] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:37:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 37 | "\x00\x00\x43\x00\x03\x27", 0x00c7 # | ^~~~~~~~~~~~~~~~~~~~ # 35| "\x00\x00\x41\x00\x03\x08", 0x00c4 # 36| "\x00\x00\x41\x00\x03\x0a", 0x00c5 # 37|-> "\x00\x00\x43\x00\x03\x27", 0x00c7 # 38| "\x00\x00\x45\x00\x03\x00", 0x00c8 # 39| "\x00\x00\x45\x00\x03\x01", 0x00c9 Error: COMPILER_WARNING: [#def212] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:38:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 38 | "\x00\x00\x45\x00\x03\x00", 0x00c8 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 36| "\x00\x00\x41\x00\x03\x0a", 0x00c5 # 37| "\x00\x00\x43\x00\x03\x27", 0x00c7 # 38|-> "\x00\x00\x45\x00\x03\x00", 0x00c8 # 39| "\x00\x00\x45\x00\x03\x01", 0x00c9 # 40| "\x00\x00\x45\x00\x03\x02", 0x00ca Error: COMPILER_WARNING: [#def213] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:39:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 39 | "\x00\x00\x45\x00\x03\x01", 0x00c9 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 37| "\x00\x00\x43\x00\x03\x27", 0x00c7 # 38| "\x00\x00\x45\x00\x03\x00", 0x00c8 # 39|-> "\x00\x00\x45\x00\x03\x01", 0x00c9 # 40| "\x00\x00\x45\x00\x03\x02", 0x00ca # 41| "\x00\x00\x45\x00\x03\x08", 0x00cb Error: COMPILER_WARNING: [#def214] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:40:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 40 | "\x00\x00\x45\x00\x03\x02", 0x00ca # | ^~~~~~~~~~~~~~~~~~~~~~~ # 38| "\x00\x00\x45\x00\x03\x00", 0x00c8 # 39| "\x00\x00\x45\x00\x03\x01", 0x00c9 # 40|-> "\x00\x00\x45\x00\x03\x02", 0x00ca # 41| "\x00\x00\x45\x00\x03\x08", 0x00cb # 42| "\x00\x00\x49\x00\x03\x00", 0x00cc Error: COMPILER_WARNING: [#def215] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:41:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 41 | "\x00\x00\x45\x00\x03\x08", 0x00cb # | ^~~~~~~~~~~~~~~~~~~~~~~ # 39| "\x00\x00\x45\x00\x03\x01", 0x00c9 # 40| "\x00\x00\x45\x00\x03\x02", 0x00ca # 41|-> "\x00\x00\x45\x00\x03\x08", 0x00cb # 42| "\x00\x00\x49\x00\x03\x00", 0x00cc # 43| "\x00\x00\x49\x00\x03\x01", 0x00cd Error: COMPILER_WARNING: [#def216] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:42:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 42 | "\x00\x00\x49\x00\x03\x00", 0x00cc # | ^~~~~~~~~~~~~~~~~~~~~~~ # 40| "\x00\x00\x45\x00\x03\x02", 0x00ca # 41| "\x00\x00\x45\x00\x03\x08", 0x00cb # 42|-> "\x00\x00\x49\x00\x03\x00", 0x00cc # 43| "\x00\x00\x49\x00\x03\x01", 0x00cd # 44| "\x00\x00\x49\x00\x03\x02", 0x00ce Error: COMPILER_WARNING: [#def217] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:43:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 43 | "\x00\x00\x49\x00\x03\x01", 0x00cd # | ^~~~~~~~~~~~~~~~~~~~~~~ # 41| "\x00\x00\x45\x00\x03\x08", 0x00cb # 42| "\x00\x00\x49\x00\x03\x00", 0x00cc # 43|-> "\x00\x00\x49\x00\x03\x01", 0x00cd # 44| "\x00\x00\x49\x00\x03\x02", 0x00ce # 45| "\x00\x00\x49\x00\x03\x08", 0x00cf Error: COMPILER_WARNING: [#def218] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:44:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 44 | "\x00\x00\x49\x00\x03\x02", 0x00ce # | ^~~~~~~~~~~~~~~~~~~~~~~ # 42| "\x00\x00\x49\x00\x03\x00", 0x00cc # 43| "\x00\x00\x49\x00\x03\x01", 0x00cd # 44|-> "\x00\x00\x49\x00\x03\x02", 0x00ce # 45| "\x00\x00\x49\x00\x03\x08", 0x00cf # 46| "\x00\x00\x4e\x00\x03\x03", 0x00d1 Error: COMPILER_WARNING: [#def219] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:45:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 45 | "\x00\x00\x49\x00\x03\x08", 0x00cf # | ^~~~~~~~~~~~~~~~~~~~~~~ # 43| "\x00\x00\x49\x00\x03\x01", 0x00cd # 44| "\x00\x00\x49\x00\x03\x02", 0x00ce # 45|-> "\x00\x00\x49\x00\x03\x08", 0x00cf # 46| "\x00\x00\x4e\x00\x03\x03", 0x00d1 # 47| "\x00\x00\x4f\x00\x03\x00", 0x00d2 Error: COMPILER_WARNING: [#def220] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:46:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 46 | "\x00\x00\x4e\x00\x03\x03", 0x00d1 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 44| "\x00\x00\x49\x00\x03\x02", 0x00ce # 45| "\x00\x00\x49\x00\x03\x08", 0x00cf # 46|-> "\x00\x00\x4e\x00\x03\x03", 0x00d1 # 47| "\x00\x00\x4f\x00\x03\x00", 0x00d2 # 48| "\x00\x00\x4f\x00\x03\x01", 0x00d3 Error: COMPILER_WARNING: [#def221] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:47:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 47 | "\x00\x00\x4f\x00\x03\x00", 0x00d2 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 45| "\x00\x00\x49\x00\x03\x08", 0x00cf # 46| "\x00\x00\x4e\x00\x03\x03", 0x00d1 # 47|-> "\x00\x00\x4f\x00\x03\x00", 0x00d2 # 48| "\x00\x00\x4f\x00\x03\x01", 0x00d3 # 49| "\x00\x00\x4f\x00\x03\x02", 0x00d4 Error: COMPILER_WARNING: [#def222] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:48:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 48 | "\x00\x00\x4f\x00\x03\x01", 0x00d3 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 46| "\x00\x00\x4e\x00\x03\x03", 0x00d1 # 47| "\x00\x00\x4f\x00\x03\x00", 0x00d2 # 48|-> "\x00\x00\x4f\x00\x03\x01", 0x00d3 # 49| "\x00\x00\x4f\x00\x03\x02", 0x00d4 # 50| "\x00\x00\x4f\x00\x03\x03", 0x00d5 Error: COMPILER_WARNING: [#def223] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:49:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 49 | "\x00\x00\x4f\x00\x03\x02", 0x00d4 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 47| "\x00\x00\x4f\x00\x03\x00", 0x00d2 # 48| "\x00\x00\x4f\x00\x03\x01", 0x00d3 # 49|-> "\x00\x00\x4f\x00\x03\x02", 0x00d4 # 50| "\x00\x00\x4f\x00\x03\x03", 0x00d5 # 51| "\x00\x00\x4f\x00\x03\x08", 0x00d6 Error: COMPILER_WARNING: [#def224] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:50:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 50 | "\x00\x00\x4f\x00\x03\x03", 0x00d5 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 48| "\x00\x00\x4f\x00\x03\x01", 0x00d3 # 49| "\x00\x00\x4f\x00\x03\x02", 0x00d4 # 50|-> "\x00\x00\x4f\x00\x03\x03", 0x00d5 # 51| "\x00\x00\x4f\x00\x03\x08", 0x00d6 # 52| "\x00\x00\x55\x00\x03\x00", 0x00d9 Error: COMPILER_WARNING: [#def225] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:51:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 51 | "\x00\x00\x4f\x00\x03\x08", 0x00d6 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 49| "\x00\x00\x4f\x00\x03\x02", 0x00d4 # 50| "\x00\x00\x4f\x00\x03\x03", 0x00d5 # 51|-> "\x00\x00\x4f\x00\x03\x08", 0x00d6 # 52| "\x00\x00\x55\x00\x03\x00", 0x00d9 # 53| "\x00\x00\x55\x00\x03\x01", 0x00da Error: COMPILER_WARNING: [#def226] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:52:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 52 | "\x00\x00\x55\x00\x03\x00", 0x00d9 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 50| "\x00\x00\x4f\x00\x03\x03", 0x00d5 # 51| "\x00\x00\x4f\x00\x03\x08", 0x00d6 # 52|-> "\x00\x00\x55\x00\x03\x00", 0x00d9 # 53| "\x00\x00\x55\x00\x03\x01", 0x00da # 54| "\x00\x00\x55\x00\x03\x02", 0x00db Error: COMPILER_WARNING: [#def227] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:53:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 53 | "\x00\x00\x55\x00\x03\x01", 0x00da # | ^~~~~~~~~~~~~~~~~~~~~~~ # 51| "\x00\x00\x4f\x00\x03\x08", 0x00d6 # 52| "\x00\x00\x55\x00\x03\x00", 0x00d9 # 53|-> "\x00\x00\x55\x00\x03\x01", 0x00da # 54| "\x00\x00\x55\x00\x03\x02", 0x00db # 55| "\x00\x00\x55\x00\x03\x08", 0x00dc Error: COMPILER_WARNING: [#def228] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:54:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 54 | "\x00\x00\x55\x00\x03\x02", 0x00db # | ^~~~~~~~~~~~~~~~~~~~~~~ # 52| "\x00\x00\x55\x00\x03\x00", 0x00d9 # 53| "\x00\x00\x55\x00\x03\x01", 0x00da # 54|-> "\x00\x00\x55\x00\x03\x02", 0x00db # 55| "\x00\x00\x55\x00\x03\x08", 0x00dc # 56| "\x00\x00\x59\x00\x03\x01", 0x00dd Error: COMPILER_WARNING: [#def229] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:55:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 55 | "\x00\x00\x55\x00\x03\x08", 0x00dc # | ^~~~~~~~~~~~~~~~~~~~~~~ # 53| "\x00\x00\x55\x00\x03\x01", 0x00da # 54| "\x00\x00\x55\x00\x03\x02", 0x00db # 55|-> "\x00\x00\x55\x00\x03\x08", 0x00dc # 56| "\x00\x00\x59\x00\x03\x01", 0x00dd # 57| "\x00\x00\x61\x00\x03\x00", 0x00e0 Error: COMPILER_WARNING: [#def230] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:56:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 56 | "\x00\x00\x59\x00\x03\x01", 0x00dd # | ^~~~~~~~~~~~~~~~~~~~~~~ # 54| "\x00\x00\x55\x00\x03\x02", 0x00db # 55| "\x00\x00\x55\x00\x03\x08", 0x00dc # 56|-> "\x00\x00\x59\x00\x03\x01", 0x00dd # 57| "\x00\x00\x61\x00\x03\x00", 0x00e0 # 58| "\x00\x00\x61\x00\x03\x01", 0x00e1 Error: COMPILER_WARNING: [#def231] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:57:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 57 | "\x00\x00\x61\x00\x03\x00", 0x00e0 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 55| "\x00\x00\x55\x00\x03\x08", 0x00dc # 56| "\x00\x00\x59\x00\x03\x01", 0x00dd # 57|-> "\x00\x00\x61\x00\x03\x00", 0x00e0 # 58| "\x00\x00\x61\x00\x03\x01", 0x00e1 # 59| "\x00\x00\x61\x00\x03\x02", 0x00e2 Error: COMPILER_WARNING: [#def232] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:58:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 58 | "\x00\x00\x61\x00\x03\x01", 0x00e1 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 56| "\x00\x00\x59\x00\x03\x01", 0x00dd # 57| "\x00\x00\x61\x00\x03\x00", 0x00e0 # 58|-> "\x00\x00\x61\x00\x03\x01", 0x00e1 # 59| "\x00\x00\x61\x00\x03\x02", 0x00e2 # 60| "\x00\x00\x61\x00\x03\x03", 0x00e3 Error: COMPILER_WARNING: [#def233] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:59:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 59 | "\x00\x00\x61\x00\x03\x02", 0x00e2 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 57| "\x00\x00\x61\x00\x03\x00", 0x00e0 # 58| "\x00\x00\x61\x00\x03\x01", 0x00e1 # 59|-> "\x00\x00\x61\x00\x03\x02", 0x00e2 # 60| "\x00\x00\x61\x00\x03\x03", 0x00e3 # 61| "\x00\x00\x61\x00\x03\x08", 0x00e4 Error: COMPILER_WARNING: [#def234] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:60:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 60 | "\x00\x00\x61\x00\x03\x03", 0x00e3 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 58| "\x00\x00\x61\x00\x03\x01", 0x00e1 # 59| "\x00\x00\x61\x00\x03\x02", 0x00e2 # 60|-> "\x00\x00\x61\x00\x03\x03", 0x00e3 # 61| "\x00\x00\x61\x00\x03\x08", 0x00e4 # 62| "\x00\x00\x61\x00\x03\x0a", 0x00e5 Error: COMPILER_WARNING: [#def235] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:61:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 61 | "\x00\x00\x61\x00\x03\x08", 0x00e4 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 59| "\x00\x00\x61\x00\x03\x02", 0x00e2 # 60| "\x00\x00\x61\x00\x03\x03", 0x00e3 # 61|-> "\x00\x00\x61\x00\x03\x08", 0x00e4 # 62| "\x00\x00\x61\x00\x03\x0a", 0x00e5 # 63| "\x00\x00\x63\x00\x03\x27", 0x00e7 Error: COMPILER_WARNING: [#def236] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:62:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 62 | "\x00\x00\x61\x00\x03\x0a", 0x00e5 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 60| "\x00\x00\x61\x00\x03\x03", 0x00e3 # 61| "\x00\x00\x61\x00\x03\x08", 0x00e4 # 62|-> "\x00\x00\x61\x00\x03\x0a", 0x00e5 # 63| "\x00\x00\x63\x00\x03\x27", 0x00e7 # 64| "\x00\x00\x65\x00\x03\x00", 0x00e8 Error: COMPILER_WARNING: [#def237] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:63:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 63 | "\x00\x00\x63\x00\x03\x27", 0x00e7 # | ^~~~~~~~~~~~~~~~~~~~ # 61| "\x00\x00\x61\x00\x03\x08", 0x00e4 # 62| "\x00\x00\x61\x00\x03\x0a", 0x00e5 # 63|-> "\x00\x00\x63\x00\x03\x27", 0x00e7 # 64| "\x00\x00\x65\x00\x03\x00", 0x00e8 # 65| "\x00\x00\x65\x00\x03\x01", 0x00e9 Error: COMPILER_WARNING: [#def238] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:64:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 64 | "\x00\x00\x65\x00\x03\x00", 0x00e8 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 62| "\x00\x00\x61\x00\x03\x0a", 0x00e5 # 63| "\x00\x00\x63\x00\x03\x27", 0x00e7 # 64|-> "\x00\x00\x65\x00\x03\x00", 0x00e8 # 65| "\x00\x00\x65\x00\x03\x01", 0x00e9 # 66| "\x00\x00\x65\x00\x03\x02", 0x00ea Error: COMPILER_WARNING: [#def239] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:65:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 65 | "\x00\x00\x65\x00\x03\x01", 0x00e9 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 63| "\x00\x00\x63\x00\x03\x27", 0x00e7 # 64| "\x00\x00\x65\x00\x03\x00", 0x00e8 # 65|-> "\x00\x00\x65\x00\x03\x01", 0x00e9 # 66| "\x00\x00\x65\x00\x03\x02", 0x00ea # 67| "\x00\x00\x65\x00\x03\x08", 0x00eb Error: COMPILER_WARNING: [#def240] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:66:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 66 | "\x00\x00\x65\x00\x03\x02", 0x00ea # | ^~~~~~~~~~~~~~~~~~~~~~~ # 64| "\x00\x00\x65\x00\x03\x00", 0x00e8 # 65| "\x00\x00\x65\x00\x03\x01", 0x00e9 # 66|-> "\x00\x00\x65\x00\x03\x02", 0x00ea # 67| "\x00\x00\x65\x00\x03\x08", 0x00eb # 68| "\x00\x00\x69\x00\x03\x00", 0x00ec Error: COMPILER_WARNING: [#def241] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:67:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 67 | "\x00\x00\x65\x00\x03\x08", 0x00eb # | ^~~~~~~~~~~~~~~~~~~~~~~ # 65| "\x00\x00\x65\x00\x03\x01", 0x00e9 # 66| "\x00\x00\x65\x00\x03\x02", 0x00ea # 67|-> "\x00\x00\x65\x00\x03\x08", 0x00eb # 68| "\x00\x00\x69\x00\x03\x00", 0x00ec # 69| "\x00\x00\x69\x00\x03\x01", 0x00ed Error: COMPILER_WARNING: [#def242] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:68:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 68 | "\x00\x00\x69\x00\x03\x00", 0x00ec # | ^~~~~~~~~~~~~~~~~~~~~~~ # 66| "\x00\x00\x65\x00\x03\x02", 0x00ea # 67| "\x00\x00\x65\x00\x03\x08", 0x00eb # 68|-> "\x00\x00\x69\x00\x03\x00", 0x00ec # 69| "\x00\x00\x69\x00\x03\x01", 0x00ed # 70| "\x00\x00\x69\x00\x03\x02", 0x00ee Error: COMPILER_WARNING: [#def243] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:69:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 69 | "\x00\x00\x69\x00\x03\x01", 0x00ed # | ^~~~~~~~~~~~~~~~~~~~~~~ # 67| "\x00\x00\x65\x00\x03\x08", 0x00eb # 68| "\x00\x00\x69\x00\x03\x00", 0x00ec # 69|-> "\x00\x00\x69\x00\x03\x01", 0x00ed # 70| "\x00\x00\x69\x00\x03\x02", 0x00ee # 71| "\x00\x00\x69\x00\x03\x08", 0x00ef Error: COMPILER_WARNING: [#def244] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:70:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 70 | "\x00\x00\x69\x00\x03\x02", 0x00ee # | ^~~~~~~~~~~~~~~~~~~~~~~ # 68| "\x00\x00\x69\x00\x03\x00", 0x00ec # 69| "\x00\x00\x69\x00\x03\x01", 0x00ed # 70|-> "\x00\x00\x69\x00\x03\x02", 0x00ee # 71| "\x00\x00\x69\x00\x03\x08", 0x00ef # 72| "\x00\x00\x6e\x00\x03\x03", 0x00f1 Error: COMPILER_WARNING: [#def245] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:71:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 71 | "\x00\x00\x69\x00\x03\x08", 0x00ef # | ^~~~~~~~~~~~~~~~~~~~~~~ # 69| "\x00\x00\x69\x00\x03\x01", 0x00ed # 70| "\x00\x00\x69\x00\x03\x02", 0x00ee # 71|-> "\x00\x00\x69\x00\x03\x08", 0x00ef # 72| "\x00\x00\x6e\x00\x03\x03", 0x00f1 # 73| "\x00\x00\x6f\x00\x03\x00", 0x00f2 Error: COMPILER_WARNING: [#def246] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:72:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 72 | "\x00\x00\x6e\x00\x03\x03", 0x00f1 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 70| "\x00\x00\x69\x00\x03\x02", 0x00ee # 71| "\x00\x00\x69\x00\x03\x08", 0x00ef # 72|-> "\x00\x00\x6e\x00\x03\x03", 0x00f1 # 73| "\x00\x00\x6f\x00\x03\x00", 0x00f2 # 74| "\x00\x00\x6f\x00\x03\x01", 0x00f3 Error: COMPILER_WARNING: [#def247] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:73:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 73 | "\x00\x00\x6f\x00\x03\x00", 0x00f2 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 71| "\x00\x00\x69\x00\x03\x08", 0x00ef # 72| "\x00\x00\x6e\x00\x03\x03", 0x00f1 # 73|-> "\x00\x00\x6f\x00\x03\x00", 0x00f2 # 74| "\x00\x00\x6f\x00\x03\x01", 0x00f3 # 75| "\x00\x00\x6f\x00\x03\x02", 0x00f4 Error: COMPILER_WARNING: [#def248] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:74:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 74 | "\x00\x00\x6f\x00\x03\x01", 0x00f3 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 72| "\x00\x00\x6e\x00\x03\x03", 0x00f1 # 73| "\x00\x00\x6f\x00\x03\x00", 0x00f2 # 74|-> "\x00\x00\x6f\x00\x03\x01", 0x00f3 # 75| "\x00\x00\x6f\x00\x03\x02", 0x00f4 # 76| "\x00\x00\x6f\x00\x03\x03", 0x00f5 Error: COMPILER_WARNING: [#def249] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:75:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 75 | "\x00\x00\x6f\x00\x03\x02", 0x00f4 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 73| "\x00\x00\x6f\x00\x03\x00", 0x00f2 # 74| "\x00\x00\x6f\x00\x03\x01", 0x00f3 # 75|-> "\x00\x00\x6f\x00\x03\x02", 0x00f4 # 76| "\x00\x00\x6f\x00\x03\x03", 0x00f5 # 77| "\x00\x00\x6f\x00\x03\x08", 0x00f6 Error: COMPILER_WARNING: [#def250] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:76:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 76 | "\x00\x00\x6f\x00\x03\x03", 0x00f5 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 74| "\x00\x00\x6f\x00\x03\x01", 0x00f3 # 75| "\x00\x00\x6f\x00\x03\x02", 0x00f4 # 76|-> "\x00\x00\x6f\x00\x03\x03", 0x00f5 # 77| "\x00\x00\x6f\x00\x03\x08", 0x00f6 # 78| "\x00\x00\x75\x00\x03\x00", 0x00f9 Error: COMPILER_WARNING: [#def251] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:77:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 77 | "\x00\x00\x6f\x00\x03\x08", 0x00f6 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 75| "\x00\x00\x6f\x00\x03\x02", 0x00f4 # 76| "\x00\x00\x6f\x00\x03\x03", 0x00f5 # 77|-> "\x00\x00\x6f\x00\x03\x08", 0x00f6 # 78| "\x00\x00\x75\x00\x03\x00", 0x00f9 # 79| "\x00\x00\x75\x00\x03\x01", 0x00fa Error: COMPILER_WARNING: [#def252] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:78:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 78 | "\x00\x00\x75\x00\x03\x00", 0x00f9 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 76| "\x00\x00\x6f\x00\x03\x03", 0x00f5 # 77| "\x00\x00\x6f\x00\x03\x08", 0x00f6 # 78|-> "\x00\x00\x75\x00\x03\x00", 0x00f9 # 79| "\x00\x00\x75\x00\x03\x01", 0x00fa # 80| "\x00\x00\x75\x00\x03\x02", 0x00fb Error: COMPILER_WARNING: [#def253] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:79:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 79 | "\x00\x00\x75\x00\x03\x01", 0x00fa # | ^~~~~~~~~~~~~~~~~~~~~~~ # 77| "\x00\x00\x6f\x00\x03\x08", 0x00f6 # 78| "\x00\x00\x75\x00\x03\x00", 0x00f9 # 79|-> "\x00\x00\x75\x00\x03\x01", 0x00fa # 80| "\x00\x00\x75\x00\x03\x02", 0x00fb # 81| "\x00\x00\x75\x00\x03\x08", 0x00fc Error: COMPILER_WARNING: [#def254] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:80:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 80 | "\x00\x00\x75\x00\x03\x02", 0x00fb # | ^~~~~~~~~~~~~~~~~~~~~~~ # 78| "\x00\x00\x75\x00\x03\x00", 0x00f9 # 79| "\x00\x00\x75\x00\x03\x01", 0x00fa # 80|-> "\x00\x00\x75\x00\x03\x02", 0x00fb # 81| "\x00\x00\x75\x00\x03\x08", 0x00fc # 82| "\x00\x00\x79\x00\x03\x01", 0x00fd Error: COMPILER_WARNING: [#def255] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:81:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 81 | "\x00\x00\x75\x00\x03\x08", 0x00fc # | ^~~~~~~~~~~~~~~~~~~~~~~ # 79| "\x00\x00\x75\x00\x03\x01", 0x00fa # 80| "\x00\x00\x75\x00\x03\x02", 0x00fb # 81|-> "\x00\x00\x75\x00\x03\x08", 0x00fc # 82| "\x00\x00\x79\x00\x03\x01", 0x00fd # 83| "\x00\x00\x79\x00\x03\x08", 0x00ff Error: COMPILER_WARNING: [#def256] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:82:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 82 | "\x00\x00\x79\x00\x03\x01", 0x00fd # | ^~~~~~~~~~~~~~~~~~~~~~~ # 80| "\x00\x00\x75\x00\x03\x02", 0x00fb # 81| "\x00\x00\x75\x00\x03\x08", 0x00fc # 82|-> "\x00\x00\x79\x00\x03\x01", 0x00fd # 83| "\x00\x00\x79\x00\x03\x08", 0x00ff # 84| "\x00\x00\x41\x00\x03\x04", 0x0100 Error: COMPILER_WARNING: [#def257] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:83:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 83 | "\x00\x00\x79\x00\x03\x08", 0x00ff # | ^~~~~~~~~~~~~~~~~~~~~~~ # 81| "\x00\x00\x75\x00\x03\x08", 0x00fc # 82| "\x00\x00\x79\x00\x03\x01", 0x00fd # 83|-> "\x00\x00\x79\x00\x03\x08", 0x00ff # 84| "\x00\x00\x41\x00\x03\x04", 0x0100 # 85| "\x00\x00\x61\x00\x03\x04", 0x0101 Error: COMPILER_WARNING: [#def258] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:84:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 84 | "\x00\x00\x41\x00\x03\x04", 0x0100 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 82| "\x00\x00\x79\x00\x03\x01", 0x00fd # 83| "\x00\x00\x79\x00\x03\x08", 0x00ff # 84|-> "\x00\x00\x41\x00\x03\x04", 0x0100 # 85| "\x00\x00\x61\x00\x03\x04", 0x0101 # 86| "\x00\x00\x41\x00\x03\x06", 0x0102 Error: COMPILER_WARNING: [#def259] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:85:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 85 | "\x00\x00\x61\x00\x03\x04", 0x0101 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 83| "\x00\x00\x79\x00\x03\x08", 0x00ff # 84| "\x00\x00\x41\x00\x03\x04", 0x0100 # 85|-> "\x00\x00\x61\x00\x03\x04", 0x0101 # 86| "\x00\x00\x41\x00\x03\x06", 0x0102 # 87| "\x00\x00\x61\x00\x03\x06", 0x0103 Error: COMPILER_WARNING: [#def260] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:86:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 86 | "\x00\x00\x41\x00\x03\x06", 0x0102 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 84| "\x00\x00\x41\x00\x03\x04", 0x0100 # 85| "\x00\x00\x61\x00\x03\x04", 0x0101 # 86|-> "\x00\x00\x41\x00\x03\x06", 0x0102 # 87| "\x00\x00\x61\x00\x03\x06", 0x0103 # 88| "\x00\x00\x41\x00\x03\x28", 0x0104 Error: COMPILER_WARNING: [#def261] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:87:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 87 | "\x00\x00\x61\x00\x03\x06", 0x0103 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 85| "\x00\x00\x61\x00\x03\x04", 0x0101 # 86| "\x00\x00\x41\x00\x03\x06", 0x0102 # 87|-> "\x00\x00\x61\x00\x03\x06", 0x0103 # 88| "\x00\x00\x41\x00\x03\x28", 0x0104 # 89| "\x00\x00\x61\x00\x03\x28", 0x0105 Error: COMPILER_WARNING: [#def262] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:88:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 88 | "\x00\x00\x41\x00\x03\x28", 0x0104 # | ^~~~~~~~~~~~~~~~~~~~ # 86| "\x00\x00\x41\x00\x03\x06", 0x0102 # 87| "\x00\x00\x61\x00\x03\x06", 0x0103 # 88|-> "\x00\x00\x41\x00\x03\x28", 0x0104 # 89| "\x00\x00\x61\x00\x03\x28", 0x0105 # 90| "\x00\x00\x43\x00\x03\x01", 0x0106 Error: COMPILER_WARNING: [#def263] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:89:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 89 | "\x00\x00\x61\x00\x03\x28", 0x0105 # | ^~~~~~~~~~~~~~~~~~~~ # 87| "\x00\x00\x61\x00\x03\x06", 0x0103 # 88| "\x00\x00\x41\x00\x03\x28", 0x0104 # 89|-> "\x00\x00\x61\x00\x03\x28", 0x0105 # 90| "\x00\x00\x43\x00\x03\x01", 0x0106 # 91| "\x00\x00\x63\x00\x03\x01", 0x0107 Error: COMPILER_WARNING: [#def264] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:90:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 90 | "\x00\x00\x43\x00\x03\x01", 0x0106 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 88| "\x00\x00\x41\x00\x03\x28", 0x0104 # 89| "\x00\x00\x61\x00\x03\x28", 0x0105 # 90|-> "\x00\x00\x43\x00\x03\x01", 0x0106 # 91| "\x00\x00\x63\x00\x03\x01", 0x0107 # 92| "\x00\x00\x43\x00\x03\x02", 0x0108 Error: COMPILER_WARNING: [#def265] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:91:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 91 | "\x00\x00\x63\x00\x03\x01", 0x0107 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 89| "\x00\x00\x61\x00\x03\x28", 0x0105 # 90| "\x00\x00\x43\x00\x03\x01", 0x0106 # 91|-> "\x00\x00\x63\x00\x03\x01", 0x0107 # 92| "\x00\x00\x43\x00\x03\x02", 0x0108 # 93| "\x00\x00\x63\x00\x03\x02", 0x0109 Error: COMPILER_WARNING: [#def266] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:92:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 92 | "\x00\x00\x43\x00\x03\x02", 0x0108 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 90| "\x00\x00\x43\x00\x03\x01", 0x0106 # 91| "\x00\x00\x63\x00\x03\x01", 0x0107 # 92|-> "\x00\x00\x43\x00\x03\x02", 0x0108 # 93| "\x00\x00\x63\x00\x03\x02", 0x0109 # 94| "\x00\x00\x43\x00\x03\x07", 0x010a Error: COMPILER_WARNING: [#def267] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:93:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 93 | "\x00\x00\x63\x00\x03\x02", 0x0109 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 91| "\x00\x00\x63\x00\x03\x01", 0x0107 # 92| "\x00\x00\x43\x00\x03\x02", 0x0108 # 93|-> "\x00\x00\x63\x00\x03\x02", 0x0109 # 94| "\x00\x00\x43\x00\x03\x07", 0x010a # 95| "\x00\x00\x63\x00\x03\x07", 0x010b Error: COMPILER_WARNING: [#def268] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:94:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 94 | "\x00\x00\x43\x00\x03\x07", 0x010a # | ^~~~~~~~~~~~~~~~~~~~~~~ # 92| "\x00\x00\x43\x00\x03\x02", 0x0108 # 93| "\x00\x00\x63\x00\x03\x02", 0x0109 # 94|-> "\x00\x00\x43\x00\x03\x07", 0x010a # 95| "\x00\x00\x63\x00\x03\x07", 0x010b # 96| "\x00\x00\x43\x00\x03\x0c", 0x010c Error: COMPILER_WARNING: [#def269] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:95:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 95 | "\x00\x00\x63\x00\x03\x07", 0x010b # | ^~~~~~~~~~~~~~~~~~~~~~~ # 93| "\x00\x00\x63\x00\x03\x02", 0x0109 # 94| "\x00\x00\x43\x00\x03\x07", 0x010a # 95|-> "\x00\x00\x63\x00\x03\x07", 0x010b # 96| "\x00\x00\x43\x00\x03\x0c", 0x010c # 97| "\x00\x00\x63\x00\x03\x0c", 0x010d Error: COMPILER_WARNING: [#def270] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:96:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 96 | "\x00\x00\x43\x00\x03\x0c", 0x010c # | ^~~~~~~~~~~~~~~~~~~~~~~ # 94| "\x00\x00\x43\x00\x03\x07", 0x010a # 95| "\x00\x00\x63\x00\x03\x07", 0x010b # 96|-> "\x00\x00\x43\x00\x03\x0c", 0x010c # 97| "\x00\x00\x63\x00\x03\x0c", 0x010d # 98| "\x00\x00\x44\x00\x03\x0c", 0x010e Error: COMPILER_WARNING: [#def271] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:97:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 97 | "\x00\x00\x63\x00\x03\x0c", 0x010d # | ^~~~~~~~~~~~~~~~~~~~~~~ # 95| "\x00\x00\x63\x00\x03\x07", 0x010b # 96| "\x00\x00\x43\x00\x03\x0c", 0x010c # 97|-> "\x00\x00\x63\x00\x03\x0c", 0x010d # 98| "\x00\x00\x44\x00\x03\x0c", 0x010e # 99| "\x00\x00\x64\x00\x03\x0c", 0x010f Error: COMPILER_WARNING: [#def272] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:98:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 98 | "\x00\x00\x44\x00\x03\x0c", 0x010e # | ^~~~~~~~~~~~~~~~~~~~~~~ # 96| "\x00\x00\x43\x00\x03\x0c", 0x010c # 97| "\x00\x00\x63\x00\x03\x0c", 0x010d # 98|-> "\x00\x00\x44\x00\x03\x0c", 0x010e # 99| "\x00\x00\x64\x00\x03\x0c", 0x010f # 100| "\x00\x00\x45\x00\x03\x04", 0x0112 Error: COMPILER_WARNING: [#def273] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:99:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 99 | "\x00\x00\x64\x00\x03\x0c", 0x010f # | ^~~~~~~~~~~~~~~~~~~~~~~ # 97| "\x00\x00\x63\x00\x03\x0c", 0x010d # 98| "\x00\x00\x44\x00\x03\x0c", 0x010e # 99|-> "\x00\x00\x64\x00\x03\x0c", 0x010f # 100| "\x00\x00\x45\x00\x03\x04", 0x0112 # 101| "\x00\x00\x65\x00\x03\x04", 0x0113 Error: COMPILER_WARNING: [#def274] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:100:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 100 | "\x00\x00\x45\x00\x03\x04", 0x0112 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 98| "\x00\x00\x44\x00\x03\x0c", 0x010e # 99| "\x00\x00\x64\x00\x03\x0c", 0x010f # 100|-> "\x00\x00\x45\x00\x03\x04", 0x0112 # 101| "\x00\x00\x65\x00\x03\x04", 0x0113 # 102| "\x00\x00\x45\x00\x03\x06", 0x0114 Error: COMPILER_WARNING: [#def275] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:101:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 101 | "\x00\x00\x65\x00\x03\x04", 0x0113 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 99| "\x00\x00\x64\x00\x03\x0c", 0x010f # 100| "\x00\x00\x45\x00\x03\x04", 0x0112 # 101|-> "\x00\x00\x65\x00\x03\x04", 0x0113 # 102| "\x00\x00\x45\x00\x03\x06", 0x0114 # 103| "\x00\x00\x65\x00\x03\x06", 0x0115 Error: COMPILER_WARNING: [#def276] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:102:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 102 | "\x00\x00\x45\x00\x03\x06", 0x0114 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 100| "\x00\x00\x45\x00\x03\x04", 0x0112 # 101| "\x00\x00\x65\x00\x03\x04", 0x0113 # 102|-> "\x00\x00\x45\x00\x03\x06", 0x0114 # 103| "\x00\x00\x65\x00\x03\x06", 0x0115 # 104| "\x00\x00\x45\x00\x03\x07", 0x0116 Error: COMPILER_WARNING: [#def277] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:103:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 103 | "\x00\x00\x65\x00\x03\x06", 0x0115 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 101| "\x00\x00\x65\x00\x03\x04", 0x0113 # 102| "\x00\x00\x45\x00\x03\x06", 0x0114 # 103|-> "\x00\x00\x65\x00\x03\x06", 0x0115 # 104| "\x00\x00\x45\x00\x03\x07", 0x0116 # 105| "\x00\x00\x65\x00\x03\x07", 0x0117 Error: COMPILER_WARNING: [#def278] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:104:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 104 | "\x00\x00\x45\x00\x03\x07", 0x0116 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 102| "\x00\x00\x45\x00\x03\x06", 0x0114 # 103| "\x00\x00\x65\x00\x03\x06", 0x0115 # 104|-> "\x00\x00\x45\x00\x03\x07", 0x0116 # 105| "\x00\x00\x65\x00\x03\x07", 0x0117 # 106| "\x00\x00\x45\x00\x03\x28", 0x0118 Error: COMPILER_WARNING: [#def279] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:105:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 105 | "\x00\x00\x65\x00\x03\x07", 0x0117 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 103| "\x00\x00\x65\x00\x03\x06", 0x0115 # 104| "\x00\x00\x45\x00\x03\x07", 0x0116 # 105|-> "\x00\x00\x65\x00\x03\x07", 0x0117 # 106| "\x00\x00\x45\x00\x03\x28", 0x0118 # 107| "\x00\x00\x65\x00\x03\x28", 0x0119 Error: COMPILER_WARNING: [#def280] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:106:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 106 | "\x00\x00\x45\x00\x03\x28", 0x0118 # | ^~~~~~~~~~~~~~~~~~~~ # 104| "\x00\x00\x45\x00\x03\x07", 0x0116 # 105| "\x00\x00\x65\x00\x03\x07", 0x0117 # 106|-> "\x00\x00\x45\x00\x03\x28", 0x0118 # 107| "\x00\x00\x65\x00\x03\x28", 0x0119 # 108| "\x00\x00\x45\x00\x03\x0c", 0x011a Error: COMPILER_WARNING: [#def281] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:107:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 107 | "\x00\x00\x65\x00\x03\x28", 0x0119 # | ^~~~~~~~~~~~~~~~~~~~ # 105| "\x00\x00\x65\x00\x03\x07", 0x0117 # 106| "\x00\x00\x45\x00\x03\x28", 0x0118 # 107|-> "\x00\x00\x65\x00\x03\x28", 0x0119 # 108| "\x00\x00\x45\x00\x03\x0c", 0x011a # 109| "\x00\x00\x65\x00\x03\x0c", 0x011b Error: COMPILER_WARNING: [#def282] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:108:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 108 | "\x00\x00\x45\x00\x03\x0c", 0x011a # | ^~~~~~~~~~~~~~~~~~~~~~~ # 106| "\x00\x00\x45\x00\x03\x28", 0x0118 # 107| "\x00\x00\x65\x00\x03\x28", 0x0119 # 108|-> "\x00\x00\x45\x00\x03\x0c", 0x011a # 109| "\x00\x00\x65\x00\x03\x0c", 0x011b # 110| "\x00\x00\x47\x00\x03\x02", 0x011c Error: COMPILER_WARNING: [#def283] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:109:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 109 | "\x00\x00\x65\x00\x03\x0c", 0x011b # | ^~~~~~~~~~~~~~~~~~~~~~~ # 107| "\x00\x00\x65\x00\x03\x28", 0x0119 # 108| "\x00\x00\x45\x00\x03\x0c", 0x011a # 109|-> "\x00\x00\x65\x00\x03\x0c", 0x011b # 110| "\x00\x00\x47\x00\x03\x02", 0x011c # 111| "\x00\x00\x67\x00\x03\x02", 0x011d Error: COMPILER_WARNING: [#def284] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:110:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 110 | "\x00\x00\x47\x00\x03\x02", 0x011c # | ^~~~~~~~~~~~~~~~~~~~~~~ # 108| "\x00\x00\x45\x00\x03\x0c", 0x011a # 109| "\x00\x00\x65\x00\x03\x0c", 0x011b # 110|-> "\x00\x00\x47\x00\x03\x02", 0x011c # 111| "\x00\x00\x67\x00\x03\x02", 0x011d # 112| "\x00\x00\x47\x00\x03\x06", 0x011e Error: COMPILER_WARNING: [#def285] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:111:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 111 | "\x00\x00\x67\x00\x03\x02", 0x011d # | ^~~~~~~~~~~~~~~~~~~~~~~ # 109| "\x00\x00\x65\x00\x03\x0c", 0x011b # 110| "\x00\x00\x47\x00\x03\x02", 0x011c # 111|-> "\x00\x00\x67\x00\x03\x02", 0x011d # 112| "\x00\x00\x47\x00\x03\x06", 0x011e # 113| "\x00\x00\x67\x00\x03\x06", 0x011f Error: COMPILER_WARNING: [#def286] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:112:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 112 | "\x00\x00\x47\x00\x03\x06", 0x011e # | ^~~~~~~~~~~~~~~~~~~~~~~ # 110| "\x00\x00\x47\x00\x03\x02", 0x011c # 111| "\x00\x00\x67\x00\x03\x02", 0x011d # 112|-> "\x00\x00\x47\x00\x03\x06", 0x011e # 113| "\x00\x00\x67\x00\x03\x06", 0x011f # 114| "\x00\x00\x47\x00\x03\x07", 0x0120 Error: COMPILER_WARNING: [#def287] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:113:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 113 | "\x00\x00\x67\x00\x03\x06", 0x011f # | ^~~~~~~~~~~~~~~~~~~~~~~ # 111| "\x00\x00\x67\x00\x03\x02", 0x011d # 112| "\x00\x00\x47\x00\x03\x06", 0x011e # 113|-> "\x00\x00\x67\x00\x03\x06", 0x011f # 114| "\x00\x00\x47\x00\x03\x07", 0x0120 # 115| "\x00\x00\x67\x00\x03\x07", 0x0121 Error: COMPILER_WARNING: [#def288] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:114:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 114 | "\x00\x00\x47\x00\x03\x07", 0x0120 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 112| "\x00\x00\x47\x00\x03\x06", 0x011e # 113| "\x00\x00\x67\x00\x03\x06", 0x011f # 114|-> "\x00\x00\x47\x00\x03\x07", 0x0120 # 115| "\x00\x00\x67\x00\x03\x07", 0x0121 # 116| "\x00\x00\x47\x00\x03\x27", 0x0122 Error: COMPILER_WARNING: [#def289] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:115:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 115 | "\x00\x00\x67\x00\x03\x07", 0x0121 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 113| "\x00\x00\x67\x00\x03\x06", 0x011f # 114| "\x00\x00\x47\x00\x03\x07", 0x0120 # 115|-> "\x00\x00\x67\x00\x03\x07", 0x0121 # 116| "\x00\x00\x47\x00\x03\x27", 0x0122 # 117| "\x00\x00\x67\x00\x03\x27", 0x0123 Error: COMPILER_WARNING: [#def290] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:116:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 116 | "\x00\x00\x47\x00\x03\x27", 0x0122 # | ^~~~~~~~~~~~~~~~~~~~ # 114| "\x00\x00\x47\x00\x03\x07", 0x0120 # 115| "\x00\x00\x67\x00\x03\x07", 0x0121 # 116|-> "\x00\x00\x47\x00\x03\x27", 0x0122 # 117| "\x00\x00\x67\x00\x03\x27", 0x0123 # 118| "\x00\x00\x48\x00\x03\x02", 0x0124 Error: COMPILER_WARNING: [#def291] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:117:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 117 | "\x00\x00\x67\x00\x03\x27", 0x0123 # | ^~~~~~~~~~~~~~~~~~~~ # 115| "\x00\x00\x67\x00\x03\x07", 0x0121 # 116| "\x00\x00\x47\x00\x03\x27", 0x0122 # 117|-> "\x00\x00\x67\x00\x03\x27", 0x0123 # 118| "\x00\x00\x48\x00\x03\x02", 0x0124 # 119| "\x00\x00\x68\x00\x03\x02", 0x0125 Error: COMPILER_WARNING: [#def292] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:118:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 118 | "\x00\x00\x48\x00\x03\x02", 0x0124 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 116| "\x00\x00\x47\x00\x03\x27", 0x0122 # 117| "\x00\x00\x67\x00\x03\x27", 0x0123 # 118|-> "\x00\x00\x48\x00\x03\x02", 0x0124 # 119| "\x00\x00\x68\x00\x03\x02", 0x0125 # 120| "\x00\x00\x49\x00\x03\x03", 0x0128 Error: COMPILER_WARNING: [#def293] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:119:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 119 | "\x00\x00\x68\x00\x03\x02", 0x0125 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 117| "\x00\x00\x67\x00\x03\x27", 0x0123 # 118| "\x00\x00\x48\x00\x03\x02", 0x0124 # 119|-> "\x00\x00\x68\x00\x03\x02", 0x0125 # 120| "\x00\x00\x49\x00\x03\x03", 0x0128 # 121| "\x00\x00\x69\x00\x03\x03", 0x0129 Error: COMPILER_WARNING: [#def294] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:120:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 120 | "\x00\x00\x49\x00\x03\x03", 0x0128 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 118| "\x00\x00\x48\x00\x03\x02", 0x0124 # 119| "\x00\x00\x68\x00\x03\x02", 0x0125 # 120|-> "\x00\x00\x49\x00\x03\x03", 0x0128 # 121| "\x00\x00\x69\x00\x03\x03", 0x0129 # 122| "\x00\x00\x49\x00\x03\x04", 0x012a Error: COMPILER_WARNING: [#def295] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:121:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 121 | "\x00\x00\x69\x00\x03\x03", 0x0129 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 119| "\x00\x00\x68\x00\x03\x02", 0x0125 # 120| "\x00\x00\x49\x00\x03\x03", 0x0128 # 121|-> "\x00\x00\x69\x00\x03\x03", 0x0129 # 122| "\x00\x00\x49\x00\x03\x04", 0x012a # 123| "\x00\x00\x69\x00\x03\x04", 0x012b Error: COMPILER_WARNING: [#def296] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:122:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 122 | "\x00\x00\x49\x00\x03\x04", 0x012a # | ^~~~~~~~~~~~~~~~~~~~~~~ # 120| "\x00\x00\x49\x00\x03\x03", 0x0128 # 121| "\x00\x00\x69\x00\x03\x03", 0x0129 # 122|-> "\x00\x00\x49\x00\x03\x04", 0x012a # 123| "\x00\x00\x69\x00\x03\x04", 0x012b # 124| "\x00\x00\x49\x00\x03\x06", 0x012c Error: COMPILER_WARNING: [#def297] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:123:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 123 | "\x00\x00\x69\x00\x03\x04", 0x012b # | ^~~~~~~~~~~~~~~~~~~~~~~ # 121| "\x00\x00\x69\x00\x03\x03", 0x0129 # 122| "\x00\x00\x49\x00\x03\x04", 0x012a # 123|-> "\x00\x00\x69\x00\x03\x04", 0x012b # 124| "\x00\x00\x49\x00\x03\x06", 0x012c # 125| "\x00\x00\x69\x00\x03\x06", 0x012d Error: COMPILER_WARNING: [#def298] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:124:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 124 | "\x00\x00\x49\x00\x03\x06", 0x012c # | ^~~~~~~~~~~~~~~~~~~~~~~ # 122| "\x00\x00\x49\x00\x03\x04", 0x012a # 123| "\x00\x00\x69\x00\x03\x04", 0x012b # 124|-> "\x00\x00\x49\x00\x03\x06", 0x012c # 125| "\x00\x00\x69\x00\x03\x06", 0x012d # 126| "\x00\x00\x49\x00\x03\x28", 0x012e Error: COMPILER_WARNING: [#def299] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:125:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 125 | "\x00\x00\x69\x00\x03\x06", 0x012d # | ^~~~~~~~~~~~~~~~~~~~~~~ # 123| "\x00\x00\x69\x00\x03\x04", 0x012b # 124| "\x00\x00\x49\x00\x03\x06", 0x012c # 125|-> "\x00\x00\x69\x00\x03\x06", 0x012d # 126| "\x00\x00\x49\x00\x03\x28", 0x012e # 127| "\x00\x00\x69\x00\x03\x28", 0x012f Error: COMPILER_WARNING: [#def300] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:126:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 126 | "\x00\x00\x49\x00\x03\x28", 0x012e # | ^~~~~~~~~~~~~~~~~~~~ # 124| "\x00\x00\x49\x00\x03\x06", 0x012c # 125| "\x00\x00\x69\x00\x03\x06", 0x012d # 126|-> "\x00\x00\x49\x00\x03\x28", 0x012e # 127| "\x00\x00\x69\x00\x03\x28", 0x012f # 128| "\x00\x00\x49\x00\x03\x07", 0x0130 Error: COMPILER_WARNING: [#def301] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:127:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 127 | "\x00\x00\x69\x00\x03\x28", 0x012f # | ^~~~~~~~~~~~~~~~~~~~ # 125| "\x00\x00\x69\x00\x03\x06", 0x012d # 126| "\x00\x00\x49\x00\x03\x28", 0x012e # 127|-> "\x00\x00\x69\x00\x03\x28", 0x012f # 128| "\x00\x00\x49\x00\x03\x07", 0x0130 # 129| "\x00\x00\x4a\x00\x03\x02", 0x0134 Error: COMPILER_WARNING: [#def302] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:128:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 128 | "\x00\x00\x49\x00\x03\x07", 0x0130 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 126| "\x00\x00\x49\x00\x03\x28", 0x012e # 127| "\x00\x00\x69\x00\x03\x28", 0x012f # 128|-> "\x00\x00\x49\x00\x03\x07", 0x0130 # 129| "\x00\x00\x4a\x00\x03\x02", 0x0134 # 130| "\x00\x00\x6a\x00\x03\x02", 0x0135 Error: COMPILER_WARNING: [#def303] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:129:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 129 | "\x00\x00\x4a\x00\x03\x02", 0x0134 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 127| "\x00\x00\x69\x00\x03\x28", 0x012f # 128| "\x00\x00\x49\x00\x03\x07", 0x0130 # 129|-> "\x00\x00\x4a\x00\x03\x02", 0x0134 # 130| "\x00\x00\x6a\x00\x03\x02", 0x0135 # 131| "\x00\x00\x4b\x00\x03\x27", 0x0136 Error: COMPILER_WARNING: [#def304] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:130:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 130 | "\x00\x00\x6a\x00\x03\x02", 0x0135 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 128| "\x00\x00\x49\x00\x03\x07", 0x0130 # 129| "\x00\x00\x4a\x00\x03\x02", 0x0134 # 130|-> "\x00\x00\x6a\x00\x03\x02", 0x0135 # 131| "\x00\x00\x4b\x00\x03\x27", 0x0136 # 132| "\x00\x00\x6b\x00\x03\x27", 0x0137 Error: COMPILER_WARNING: [#def305] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:131:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 131 | "\x00\x00\x4b\x00\x03\x27", 0x0136 # | ^~~~~~~~~~~~~~~~~~~~ # 129| "\x00\x00\x4a\x00\x03\x02", 0x0134 # 130| "\x00\x00\x6a\x00\x03\x02", 0x0135 # 131|-> "\x00\x00\x4b\x00\x03\x27", 0x0136 # 132| "\x00\x00\x6b\x00\x03\x27", 0x0137 # 133| "\x00\x00\x4c\x00\x03\x01", 0x0139 Error: COMPILER_WARNING (CWE-909): [#def306] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:132:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 132 | "\x00\x00\x6b\x00\x03\x27", 0x0137 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 130| "\x00\x00\x6a\x00\x03\x02", 0x0135 # 131| "\x00\x00\x4b\x00\x03\x27", 0x0136 # 132|-> "\x00\x00\x6b\x00\x03\x27", 0x0137 # 133| "\x00\x00\x4c\x00\x03\x01", 0x0139 # 134| "\x00\x00\x6c\x00\x03\x01", 0x013a Error: COMPILER_WARNING (CWE-909): [#def307] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:133:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 133 | "\x00\x00\x4c\x00\x03\x01", 0x0139 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 131| "\x00\x00\x4b\x00\x03\x27", 0x0136 # 132| "\x00\x00\x6b\x00\x03\x27", 0x0137 # 133|-> "\x00\x00\x4c\x00\x03\x01", 0x0139 # 134| "\x00\x00\x6c\x00\x03\x01", 0x013a # 135| "\x00\x00\x4c\x00\x03\x27", 0x013b Error: COMPILER_WARNING: [#def308] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:133:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 133 | "\x00\x00\x4c\x00\x03\x01", 0x0139 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 131| "\x00\x00\x4b\x00\x03\x27", 0x0136 # 132| "\x00\x00\x6b\x00\x03\x27", 0x0137 # 133|-> "\x00\x00\x4c\x00\x03\x01", 0x0139 # 134| "\x00\x00\x6c\x00\x03\x01", 0x013a # 135| "\x00\x00\x4c\x00\x03\x27", 0x013b Error: COMPILER_WARNING: [#def309] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:134:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 134 | "\x00\x00\x6c\x00\x03\x01", 0x013a # | ^~~~~~~~~~~~~~~~~~~~~~~ # 132| "\x00\x00\x6b\x00\x03\x27", 0x0137 # 133| "\x00\x00\x4c\x00\x03\x01", 0x0139 # 134|-> "\x00\x00\x6c\x00\x03\x01", 0x013a # 135| "\x00\x00\x4c\x00\x03\x27", 0x013b # 136| "\x00\x00\x6c\x00\x03\x27", 0x013c Error: COMPILER_WARNING: [#def310] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:135:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 135 | "\x00\x00\x4c\x00\x03\x27", 0x013b # | ^~~~~~~~~~~~~~~~~~~~ # 133| "\x00\x00\x4c\x00\x03\x01", 0x0139 # 134| "\x00\x00\x6c\x00\x03\x01", 0x013a # 135|-> "\x00\x00\x4c\x00\x03\x27", 0x013b # 136| "\x00\x00\x6c\x00\x03\x27", 0x013c # 137| "\x00\x00\x4c\x00\x03\x0c", 0x013d Error: COMPILER_WARNING (CWE-909): [#def311] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:137:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 137 | "\x00\x00\x4c\x00\x03\x0c", 0x013d # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 135| "\x00\x00\x4c\x00\x03\x27", 0x013b # 136| "\x00\x00\x6c\x00\x03\x27", 0x013c # 137|-> "\x00\x00\x4c\x00\x03\x0c", 0x013d # 138| "\x00\x00\x6c\x00\x03\x0c", 0x013e # 139| "\x00\x00\x4e\x00\x03\x01", 0x0143 Error: COMPILER_WARNING: [#def312] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:137:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 137 | "\x00\x00\x4c\x00\x03\x0c", 0x013d # | ^~~~~~~~~~~~~~~~~~~~~~~ # 135| "\x00\x00\x4c\x00\x03\x27", 0x013b # 136| "\x00\x00\x6c\x00\x03\x27", 0x013c # 137|-> "\x00\x00\x4c\x00\x03\x0c", 0x013d # 138| "\x00\x00\x6c\x00\x03\x0c", 0x013e # 139| "\x00\x00\x4e\x00\x03\x01", 0x0143 Error: COMPILER_WARNING: [#def313] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:138:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 138 | "\x00\x00\x6c\x00\x03\x0c", 0x013e # | ^~~~~~~~~~~~~~~~~~~~~~~ # 136| "\x00\x00\x6c\x00\x03\x27", 0x013c # 137| "\x00\x00\x4c\x00\x03\x0c", 0x013d # 138|-> "\x00\x00\x6c\x00\x03\x0c", 0x013e # 139| "\x00\x00\x4e\x00\x03\x01", 0x0143 # 140| "\x00\x00\x6e\x00\x03\x01", 0x0144 Error: COMPILER_WARNING: [#def314] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:139:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 139 | "\x00\x00\x4e\x00\x03\x01", 0x0143 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 137| "\x00\x00\x4c\x00\x03\x0c", 0x013d # 138| "\x00\x00\x6c\x00\x03\x0c", 0x013e # 139|-> "\x00\x00\x4e\x00\x03\x01", 0x0143 # 140| "\x00\x00\x6e\x00\x03\x01", 0x0144 # 141| "\x00\x00\x4e\x00\x03\x27", 0x0145 Error: COMPILER_WARNING: [#def315] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:140:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 140 | "\x00\x00\x6e\x00\x03\x01", 0x0144 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 138| "\x00\x00\x6c\x00\x03\x0c", 0x013e # 139| "\x00\x00\x4e\x00\x03\x01", 0x0143 # 140|-> "\x00\x00\x6e\x00\x03\x01", 0x0144 # 141| "\x00\x00\x4e\x00\x03\x27", 0x0145 # 142| "\x00\x00\x6e\x00\x03\x27", 0x0146 Error: COMPILER_WARNING: [#def316] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:141:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 141 | "\x00\x00\x4e\x00\x03\x27", 0x0145 # | ^~~~~~~~~~~~~~~~~~~~ # 139| "\x00\x00\x4e\x00\x03\x01", 0x0143 # 140| "\x00\x00\x6e\x00\x03\x01", 0x0144 # 141|-> "\x00\x00\x4e\x00\x03\x27", 0x0145 # 142| "\x00\x00\x6e\x00\x03\x27", 0x0146 # 143| "\x00\x00\x4e\x00\x03\x0c", 0x0147 Error: COMPILER_WARNING (CWE-909): [#def317] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:142:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 142 | "\x00\x00\x6e\x00\x03\x27", 0x0146 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 140| "\x00\x00\x6e\x00\x03\x01", 0x0144 # 141| "\x00\x00\x4e\x00\x03\x27", 0x0145 # 142|-> "\x00\x00\x6e\x00\x03\x27", 0x0146 # 143| "\x00\x00\x4e\x00\x03\x0c", 0x0147 # 144| "\x00\x00\x6e\x00\x03\x0c", 0x0148 Error: COMPILER_WARNING: [#def318] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:142:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 142 | "\x00\x00\x6e\x00\x03\x27", 0x0146 # | ^~~~~~~~~~~~~~~~~~~~ # 140| "\x00\x00\x6e\x00\x03\x01", 0x0144 # 141| "\x00\x00\x4e\x00\x03\x27", 0x0145 # 142|-> "\x00\x00\x6e\x00\x03\x27", 0x0146 # 143| "\x00\x00\x4e\x00\x03\x0c", 0x0147 # 144| "\x00\x00\x6e\x00\x03\x0c", 0x0148 Error: COMPILER_WARNING: [#def319] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:143:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 143 | "\x00\x00\x4e\x00\x03\x0c", 0x0147 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 141| "\x00\x00\x4e\x00\x03\x27", 0x0145 # 142| "\x00\x00\x6e\x00\x03\x27", 0x0146 # 143|-> "\x00\x00\x4e\x00\x03\x0c", 0x0147 # 144| "\x00\x00\x6e\x00\x03\x0c", 0x0148 # 145| "\x00\x00\x4f\x00\x03\x04", 0x014c Error: COMPILER_WARNING: [#def320] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:144:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 144 | "\x00\x00\x6e\x00\x03\x0c", 0x0148 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 142| "\x00\x00\x6e\x00\x03\x27", 0x0146 # 143| "\x00\x00\x4e\x00\x03\x0c", 0x0147 # 144|-> "\x00\x00\x6e\x00\x03\x0c", 0x0148 # 145| "\x00\x00\x4f\x00\x03\x04", 0x014c # 146| "\x00\x00\x6f\x00\x03\x04", 0x014d Error: COMPILER_WARNING: [#def321] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:145:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 145 | "\x00\x00\x4f\x00\x03\x04", 0x014c # | ^~~~~~~~~~~~~~~~~~~~~~~ # 143| "\x00\x00\x4e\x00\x03\x0c", 0x0147 # 144| "\x00\x00\x6e\x00\x03\x0c", 0x0148 # 145|-> "\x00\x00\x4f\x00\x03\x04", 0x014c # 146| "\x00\x00\x6f\x00\x03\x04", 0x014d # 147| "\x00\x00\x4f\x00\x03\x06", 0x014e Error: COMPILER_WARNING: [#def322] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:146:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 146 | "\x00\x00\x6f\x00\x03\x04", 0x014d # | ^~~~~~~~~~~~~~~~~~~~~~~ # 144| "\x00\x00\x6e\x00\x03\x0c", 0x0148 # 145| "\x00\x00\x4f\x00\x03\x04", 0x014c # 146|-> "\x00\x00\x6f\x00\x03\x04", 0x014d # 147| "\x00\x00\x4f\x00\x03\x06", 0x014e # 148| "\x00\x00\x6f\x00\x03\x06", 0x014f Error: COMPILER_WARNING: [#def323] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:147:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 147 | "\x00\x00\x4f\x00\x03\x06", 0x014e # | ^~~~~~~~~~~~~~~~~~~~~~~ # 145| "\x00\x00\x4f\x00\x03\x04", 0x014c # 146| "\x00\x00\x6f\x00\x03\x04", 0x014d # 147|-> "\x00\x00\x4f\x00\x03\x06", 0x014e # 148| "\x00\x00\x6f\x00\x03\x06", 0x014f # 149| "\x00\x00\x4f\x00\x03\x0b", 0x0150 Error: COMPILER_WARNING: [#def324] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:148:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 148 | "\x00\x00\x6f\x00\x03\x06", 0x014f # | ^~~~~~~~~~~~~~~~~~~~~~~ # 146| "\x00\x00\x6f\x00\x03\x04", 0x014d # 147| "\x00\x00\x4f\x00\x03\x06", 0x014e # 148|-> "\x00\x00\x6f\x00\x03\x06", 0x014f # 149| "\x00\x00\x4f\x00\x03\x0b", 0x0150 # 150| "\x00\x00\x6f\x00\x03\x0b", 0x0151 Error: COMPILER_WARNING: [#def325] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:149:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 149 | "\x00\x00\x4f\x00\x03\x0b", 0x0150 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 147| "\x00\x00\x4f\x00\x03\x06", 0x014e # 148| "\x00\x00\x6f\x00\x03\x06", 0x014f # 149|-> "\x00\x00\x4f\x00\x03\x0b", 0x0150 # 150| "\x00\x00\x6f\x00\x03\x0b", 0x0151 # 151| "\x00\x00\x52\x00\x03\x01", 0x0154 Error: COMPILER_WARNING: [#def326] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:150:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 150 | "\x00\x00\x6f\x00\x03\x0b", 0x0151 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 148| "\x00\x00\x6f\x00\x03\x06", 0x014f # 149| "\x00\x00\x4f\x00\x03\x0b", 0x0150 # 150|-> "\x00\x00\x6f\x00\x03\x0b", 0x0151 # 151| "\x00\x00\x52\x00\x03\x01", 0x0154 # 152| "\x00\x00\x72\x00\x03\x01", 0x0155 Error: COMPILER_WARNING: [#def327] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:151:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 151 | "\x00\x00\x52\x00\x03\x01", 0x0154 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 149| "\x00\x00\x4f\x00\x03\x0b", 0x0150 # 150| "\x00\x00\x6f\x00\x03\x0b", 0x0151 # 151|-> "\x00\x00\x52\x00\x03\x01", 0x0154 # 152| "\x00\x00\x72\x00\x03\x01", 0x0155 # 153| "\x00\x00\x52\x00\x03\x27", 0x0156 Error: COMPILER_WARNING: [#def328] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:152:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 152 | "\x00\x00\x72\x00\x03\x01", 0x0155 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 150| "\x00\x00\x6f\x00\x03\x0b", 0x0151 # 151| "\x00\x00\x52\x00\x03\x01", 0x0154 # 152|-> "\x00\x00\x72\x00\x03\x01", 0x0155 # 153| "\x00\x00\x52\x00\x03\x27", 0x0156 # 154| "\x00\x00\x72\x00\x03\x27", 0x0157 Error: COMPILER_WARNING: [#def329] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:153:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 153 | "\x00\x00\x52\x00\x03\x27", 0x0156 # | ^~~~~~~~~~~~~~~~~~~~ # 151| "\x00\x00\x52\x00\x03\x01", 0x0154 # 152| "\x00\x00\x72\x00\x03\x01", 0x0155 # 153|-> "\x00\x00\x52\x00\x03\x27", 0x0156 # 154| "\x00\x00\x72\x00\x03\x27", 0x0157 # 155| "\x00\x00\x52\x00\x03\x0c", 0x0158 Error: COMPILER_WARNING: [#def330] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:154:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 154 | "\x00\x00\x72\x00\x03\x27", 0x0157 # | ^~~~~~~~~~~~~~~~~~~~ # 152| "\x00\x00\x72\x00\x03\x01", 0x0155 # 153| "\x00\x00\x52\x00\x03\x27", 0x0156 # 154|-> "\x00\x00\x72\x00\x03\x27", 0x0157 # 155| "\x00\x00\x52\x00\x03\x0c", 0x0158 # 156| "\x00\x00\x72\x00\x03\x0c", 0x0159 Error: COMPILER_WARNING: [#def331] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:155:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 155 | "\x00\x00\x52\x00\x03\x0c", 0x0158 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 153| "\x00\x00\x52\x00\x03\x27", 0x0156 # 154| "\x00\x00\x72\x00\x03\x27", 0x0157 # 155|-> "\x00\x00\x52\x00\x03\x0c", 0x0158 # 156| "\x00\x00\x72\x00\x03\x0c", 0x0159 # 157| "\x00\x00\x53\x00\x03\x01", 0x015a Error: COMPILER_WARNING: [#def332] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:156:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 156 | "\x00\x00\x72\x00\x03\x0c", 0x0159 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 154| "\x00\x00\x72\x00\x03\x27", 0x0157 # 155| "\x00\x00\x52\x00\x03\x0c", 0x0158 # 156|-> "\x00\x00\x72\x00\x03\x0c", 0x0159 # 157| "\x00\x00\x53\x00\x03\x01", 0x015a # 158| "\x00\x00\x73\x00\x03\x01", 0x015b Error: COMPILER_WARNING: [#def333] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:157:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 157 | "\x00\x00\x53\x00\x03\x01", 0x015a # | ^~~~~~~~~~~~~~~~~~~~~~~ # 155| "\x00\x00\x52\x00\x03\x0c", 0x0158 # 156| "\x00\x00\x72\x00\x03\x0c", 0x0159 # 157|-> "\x00\x00\x53\x00\x03\x01", 0x015a # 158| "\x00\x00\x73\x00\x03\x01", 0x015b # 159| "\x00\x00\x53\x00\x03\x02", 0x015c Error: COMPILER_WARNING: [#def334] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:158:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 158 | "\x00\x00\x73\x00\x03\x01", 0x015b # | ^~~~~~~~~~~~~~~~~~~~~~~ # 156| "\x00\x00\x72\x00\x03\x0c", 0x0159 # 157| "\x00\x00\x53\x00\x03\x01", 0x015a # 158|-> "\x00\x00\x73\x00\x03\x01", 0x015b # 159| "\x00\x00\x53\x00\x03\x02", 0x015c # 160| "\x00\x00\x73\x00\x03\x02", 0x015d Error: COMPILER_WARNING: [#def335] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:159:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 159 | "\x00\x00\x53\x00\x03\x02", 0x015c # | ^~~~~~~~~~~~~~~~~~~~~~~ # 157| "\x00\x00\x53\x00\x03\x01", 0x015a # 158| "\x00\x00\x73\x00\x03\x01", 0x015b # 159|-> "\x00\x00\x53\x00\x03\x02", 0x015c # 160| "\x00\x00\x73\x00\x03\x02", 0x015d # 161| "\x00\x00\x53\x00\x03\x27", 0x015e Error: COMPILER_WARNING: [#def336] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:160:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 160 | "\x00\x00\x73\x00\x03\x02", 0x015d # | ^~~~~~~~~~~~~~~~~~~~~~~ # 158| "\x00\x00\x73\x00\x03\x01", 0x015b # 159| "\x00\x00\x53\x00\x03\x02", 0x015c # 160|-> "\x00\x00\x73\x00\x03\x02", 0x015d # 161| "\x00\x00\x53\x00\x03\x27", 0x015e # 162| "\x00\x00\x73\x00\x03\x27", 0x015f Error: COMPILER_WARNING: [#def337] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:162:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 162 | "\x00\x00\x73\x00\x03\x27", 0x015f # | ^~~~~~~~~~~~~~~~~~~~ # 160| "\x00\x00\x73\x00\x03\x02", 0x015d # 161| "\x00\x00\x53\x00\x03\x27", 0x015e # 162|-> "\x00\x00\x73\x00\x03\x27", 0x015f # 163| "\x00\x00\x53\x00\x03\x0c", 0x0160 # 164| "\x00\x00\x73\x00\x03\x0c", 0x0161 Error: COMPILER_WARNING: [#def338] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:163:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 163 | "\x00\x00\x53\x00\x03\x0c", 0x0160 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 161| "\x00\x00\x53\x00\x03\x27", 0x015e # 162| "\x00\x00\x73\x00\x03\x27", 0x015f # 163|-> "\x00\x00\x53\x00\x03\x0c", 0x0160 # 164| "\x00\x00\x73\x00\x03\x0c", 0x0161 # 165| "\x00\x00\x54\x00\x03\x27", 0x0162 Error: COMPILER_WARNING: [#def339] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:164:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 164 | "\x00\x00\x73\x00\x03\x0c", 0x0161 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 162| "\x00\x00\x73\x00\x03\x27", 0x015f # 163| "\x00\x00\x53\x00\x03\x0c", 0x0160 # 164|-> "\x00\x00\x73\x00\x03\x0c", 0x0161 # 165| "\x00\x00\x54\x00\x03\x27", 0x0162 # 166| "\x00\x00\x74\x00\x03\x27", 0x0163 Error: COMPILER_WARNING: [#def340] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:165:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 165 | "\x00\x00\x54\x00\x03\x27", 0x0162 # | ^~~~~~~~~~~~~~~~~~~~ # 163| "\x00\x00\x53\x00\x03\x0c", 0x0160 # 164| "\x00\x00\x73\x00\x03\x0c", 0x0161 # 165|-> "\x00\x00\x54\x00\x03\x27", 0x0162 # 166| "\x00\x00\x74\x00\x03\x27", 0x0163 # 167| "\x00\x00\x54\x00\x03\x0c", 0x0164 Error: COMPILER_WARNING: [#def341] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:166:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 166 | "\x00\x00\x74\x00\x03\x27", 0x0163 # | ^~~~~~~~~~~~~~~~~~~~ # 164| "\x00\x00\x73\x00\x03\x0c", 0x0161 # 165| "\x00\x00\x54\x00\x03\x27", 0x0162 # 166|-> "\x00\x00\x74\x00\x03\x27", 0x0163 # 167| "\x00\x00\x54\x00\x03\x0c", 0x0164 # 168| "\x00\x00\x74\x00\x03\x0c", 0x0165 Error: COMPILER_WARNING: [#def342] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:167:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 167 | "\x00\x00\x54\x00\x03\x0c", 0x0164 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 165| "\x00\x00\x54\x00\x03\x27", 0x0162 # 166| "\x00\x00\x74\x00\x03\x27", 0x0163 # 167|-> "\x00\x00\x54\x00\x03\x0c", 0x0164 # 168| "\x00\x00\x74\x00\x03\x0c", 0x0165 # 169| "\x00\x00\x55\x00\x03\x03", 0x0168 Error: COMPILER_WARNING: [#def343] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:168:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 168 | "\x00\x00\x74\x00\x03\x0c", 0x0165 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 166| "\x00\x00\x74\x00\x03\x27", 0x0163 # 167| "\x00\x00\x54\x00\x03\x0c", 0x0164 # 168|-> "\x00\x00\x74\x00\x03\x0c", 0x0165 # 169| "\x00\x00\x55\x00\x03\x03", 0x0168 # 170| "\x00\x00\x75\x00\x03\x03", 0x0169 Error: COMPILER_WARNING: [#def344] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:169:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 169 | "\x00\x00\x55\x00\x03\x03", 0x0168 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 167| "\x00\x00\x54\x00\x03\x0c", 0x0164 # 168| "\x00\x00\x74\x00\x03\x0c", 0x0165 # 169|-> "\x00\x00\x55\x00\x03\x03", 0x0168 # 170| "\x00\x00\x75\x00\x03\x03", 0x0169 # 171| "\x00\x00\x55\x00\x03\x04", 0x016a Error: COMPILER_WARNING: [#def345] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:170:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 170 | "\x00\x00\x75\x00\x03\x03", 0x0169 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 168| "\x00\x00\x74\x00\x03\x0c", 0x0165 # 169| "\x00\x00\x55\x00\x03\x03", 0x0168 # 170|-> "\x00\x00\x75\x00\x03\x03", 0x0169 # 171| "\x00\x00\x55\x00\x03\x04", 0x016a # 172| "\x00\x00\x75\x00\x03\x04", 0x016b Error: COMPILER_WARNING: [#def346] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:171:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 171 | "\x00\x00\x55\x00\x03\x04", 0x016a # | ^~~~~~~~~~~~~~~~~~~~~~~ # 169| "\x00\x00\x55\x00\x03\x03", 0x0168 # 170| "\x00\x00\x75\x00\x03\x03", 0x0169 # 171|-> "\x00\x00\x55\x00\x03\x04", 0x016a # 172| "\x00\x00\x75\x00\x03\x04", 0x016b # 173| "\x00\x00\x55\x00\x03\x06", 0x016c Error: COMPILER_WARNING: [#def347] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:172:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 172 | "\x00\x00\x75\x00\x03\x04", 0x016b # | ^~~~~~~~~~~~~~~~~~~~~~~ # 170| "\x00\x00\x75\x00\x03\x03", 0x0169 # 171| "\x00\x00\x55\x00\x03\x04", 0x016a # 172|-> "\x00\x00\x75\x00\x03\x04", 0x016b # 173| "\x00\x00\x55\x00\x03\x06", 0x016c # 174| "\x00\x00\x75\x00\x03\x06", 0x016d Error: COMPILER_WARNING: [#def348] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:173:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 173 | "\x00\x00\x55\x00\x03\x06", 0x016c # | ^~~~~~~~~~~~~~~~~~~~~~~ # 171| "\x00\x00\x55\x00\x03\x04", 0x016a # 172| "\x00\x00\x75\x00\x03\x04", 0x016b # 173|-> "\x00\x00\x55\x00\x03\x06", 0x016c # 174| "\x00\x00\x75\x00\x03\x06", 0x016d # 175| "\x00\x00\x55\x00\x03\x0a", 0x016e Error: COMPILER_WARNING: [#def349] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:174:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 174 | "\x00\x00\x75\x00\x03\x06", 0x016d # | ^~~~~~~~~~~~~~~~~~~~~~~ # 172| "\x00\x00\x75\x00\x03\x04", 0x016b # 173| "\x00\x00\x55\x00\x03\x06", 0x016c # 174|-> "\x00\x00\x75\x00\x03\x06", 0x016d # 175| "\x00\x00\x55\x00\x03\x0a", 0x016e # 176| "\x00\x00\x75\x00\x03\x0a", 0x016f Error: COMPILER_WARNING: [#def350] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:175:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 175 | "\x00\x00\x55\x00\x03\x0a", 0x016e # | ^~~~~~~~~~~~~~~~~~~~~~~ # 173| "\x00\x00\x55\x00\x03\x06", 0x016c # 174| "\x00\x00\x75\x00\x03\x06", 0x016d # 175|-> "\x00\x00\x55\x00\x03\x0a", 0x016e # 176| "\x00\x00\x75\x00\x03\x0a", 0x016f # 177| "\x00\x00\x55\x00\x03\x0b", 0x0170 Error: COMPILER_WARNING: [#def351] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:176:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 176 | "\x00\x00\x75\x00\x03\x0a", 0x016f # | ^~~~~~~~~~~~~~~~~~~~~~~ # 174| "\x00\x00\x75\x00\x03\x06", 0x016d # 175| "\x00\x00\x55\x00\x03\x0a", 0x016e # 176|-> "\x00\x00\x75\x00\x03\x0a", 0x016f # 177| "\x00\x00\x55\x00\x03\x0b", 0x0170 # 178| "\x00\x00\x75\x00\x03\x0b", 0x0171 Error: COMPILER_WARNING: [#def352] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:177:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 177 | "\x00\x00\x55\x00\x03\x0b", 0x0170 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 175| "\x00\x00\x55\x00\x03\x0a", 0x016e # 176| "\x00\x00\x75\x00\x03\x0a", 0x016f # 177|-> "\x00\x00\x55\x00\x03\x0b", 0x0170 # 178| "\x00\x00\x75\x00\x03\x0b", 0x0171 # 179| "\x00\x00\x55\x00\x03\x28", 0x0172 Error: COMPILER_WARNING: [#def353] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:178:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 178 | "\x00\x00\x75\x00\x03\x0b", 0x0171 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 176| "\x00\x00\x75\x00\x03\x0a", 0x016f # 177| "\x00\x00\x55\x00\x03\x0b", 0x0170 # 178|-> "\x00\x00\x75\x00\x03\x0b", 0x0171 # 179| "\x00\x00\x55\x00\x03\x28", 0x0172 # 180| "\x00\x00\x75\x00\x03\x28", 0x0173 Error: COMPILER_WARNING: [#def354] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:179:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 179 | "\x00\x00\x55\x00\x03\x28", 0x0172 # | ^~~~~~~~~~~~~~~~~~~~ # 177| "\x00\x00\x55\x00\x03\x0b", 0x0170 # 178| "\x00\x00\x75\x00\x03\x0b", 0x0171 # 179|-> "\x00\x00\x55\x00\x03\x28", 0x0172 # 180| "\x00\x00\x75\x00\x03\x28", 0x0173 # 181| "\x00\x00\x57\x00\x03\x02", 0x0174 Error: COMPILER_WARNING: [#def355] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:180:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 180 | "\x00\x00\x75\x00\x03\x28", 0x0173 # | ^~~~~~~~~~~~~~~~~~~~ # 178| "\x00\x00\x75\x00\x03\x0b", 0x0171 # 179| "\x00\x00\x55\x00\x03\x28", 0x0172 # 180|-> "\x00\x00\x75\x00\x03\x28", 0x0173 # 181| "\x00\x00\x57\x00\x03\x02", 0x0174 # 182| "\x00\x00\x77\x00\x03\x02", 0x0175 Error: COMPILER_WARNING: [#def356] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:181:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 181 | "\x00\x00\x57\x00\x03\x02", 0x0174 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 179| "\x00\x00\x55\x00\x03\x28", 0x0172 # 180| "\x00\x00\x75\x00\x03\x28", 0x0173 # 181|-> "\x00\x00\x57\x00\x03\x02", 0x0174 # 182| "\x00\x00\x77\x00\x03\x02", 0x0175 # 183| "\x00\x00\x59\x00\x03\x02", 0x0176 Error: COMPILER_WARNING: [#def357] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:182:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 182 | "\x00\x00\x77\x00\x03\x02", 0x0175 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 180| "\x00\x00\x75\x00\x03\x28", 0x0173 # 181| "\x00\x00\x57\x00\x03\x02", 0x0174 # 182|-> "\x00\x00\x77\x00\x03\x02", 0x0175 # 183| "\x00\x00\x59\x00\x03\x02", 0x0176 # 184| "\x00\x00\x79\x00\x03\x02", 0x0177 Error: COMPILER_WARNING: [#def358] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:183:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 183 | "\x00\x00\x59\x00\x03\x02", 0x0176 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 181| "\x00\x00\x57\x00\x03\x02", 0x0174 # 182| "\x00\x00\x77\x00\x03\x02", 0x0175 # 183|-> "\x00\x00\x59\x00\x03\x02", 0x0176 # 184| "\x00\x00\x79\x00\x03\x02", 0x0177 # 185| "\x00\x00\x59\x00\x03\x08", 0x0178 Error: COMPILER_WARNING: [#def359] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:184:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 184 | "\x00\x00\x79\x00\x03\x02", 0x0177 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 182| "\x00\x00\x77\x00\x03\x02", 0x0175 # 183| "\x00\x00\x59\x00\x03\x02", 0x0176 # 184|-> "\x00\x00\x79\x00\x03\x02", 0x0177 # 185| "\x00\x00\x59\x00\x03\x08", 0x0178 # 186| "\x00\x00\x5a\x00\x03\x01", 0x0179 Error: COMPILER_WARNING: [#def360] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:185:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 185 | "\x00\x00\x59\x00\x03\x08", 0x0178 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 183| "\x00\x00\x59\x00\x03\x02", 0x0176 # 184| "\x00\x00\x79\x00\x03\x02", 0x0177 # 185|-> "\x00\x00\x59\x00\x03\x08", 0x0178 # 186| "\x00\x00\x5a\x00\x03\x01", 0x0179 # 187| "\x00\x00\x7a\x00\x03\x01", 0x017a Error: COMPILER_WARNING: [#def361] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:186:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 186 | "\x00\x00\x5a\x00\x03\x01", 0x0179 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 184| "\x00\x00\x79\x00\x03\x02", 0x0177 # 185| "\x00\x00\x59\x00\x03\x08", 0x0178 # 186|-> "\x00\x00\x5a\x00\x03\x01", 0x0179 # 187| "\x00\x00\x7a\x00\x03\x01", 0x017a # 188| "\x00\x00\x5a\x00\x03\x07", 0x017b Error: COMPILER_WARNING: [#def362] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:187:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 187 | "\x00\x00\x7a\x00\x03\x01", 0x017a # | ^~~~~~~~~~~~~~~~~~~~~~~ # 185| "\x00\x00\x59\x00\x03\x08", 0x0178 # 186| "\x00\x00\x5a\x00\x03\x01", 0x0179 # 187|-> "\x00\x00\x7a\x00\x03\x01", 0x017a # 188| "\x00\x00\x5a\x00\x03\x07", 0x017b # 189| "\x00\x00\x7a\x00\x03\x07", 0x017c Error: COMPILER_WARNING: [#def363] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:188:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 188 | "\x00\x00\x5a\x00\x03\x07", 0x017b # | ^~~~~~~~~~~~~~~~~~~~~~~ # 186| "\x00\x00\x5a\x00\x03\x01", 0x0179 # 187| "\x00\x00\x7a\x00\x03\x01", 0x017a # 188|-> "\x00\x00\x5a\x00\x03\x07", 0x017b # 189| "\x00\x00\x7a\x00\x03\x07", 0x017c # 190| "\x00\x00\x5a\x00\x03\x0c", 0x017d Error: COMPILER_WARNING: [#def364] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:189:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 189 | "\x00\x00\x7a\x00\x03\x07", 0x017c # | ^~~~~~~~~~~~~~~~~~~~~~~ # 187| "\x00\x00\x7a\x00\x03\x01", 0x017a # 188| "\x00\x00\x5a\x00\x03\x07", 0x017b # 189|-> "\x00\x00\x7a\x00\x03\x07", 0x017c # 190| "\x00\x00\x5a\x00\x03\x0c", 0x017d # 191| "\x00\x00\x7a\x00\x03\x0c", 0x017e Error: COMPILER_WARNING: [#def365] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:190:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 190 | "\x00\x00\x5a\x00\x03\x0c", 0x017d # | ^~~~~~~~~~~~~~~~~~~~~~~ # 188| "\x00\x00\x5a\x00\x03\x07", 0x017b # 189| "\x00\x00\x7a\x00\x03\x07", 0x017c # 190|-> "\x00\x00\x5a\x00\x03\x0c", 0x017d # 191| "\x00\x00\x7a\x00\x03\x0c", 0x017e # 192| "\x00\x00\x4f\x00\x03\x1b", 0x01a0 Error: COMPILER_WARNING: [#def366] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:191:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 191 | "\x00\x00\x7a\x00\x03\x0c", 0x017e # | ^~~~~~~~~~~~~~~~~~~~~~~ # 189| "\x00\x00\x7a\x00\x03\x07", 0x017c # 190| "\x00\x00\x5a\x00\x03\x0c", 0x017d # 191|-> "\x00\x00\x7a\x00\x03\x0c", 0x017e # 192| "\x00\x00\x4f\x00\x03\x1b", 0x01a0 # 193| "\x00\x00\x6f\x00\x03\x1b", 0x01a1 Error: COMPILER_WARNING: [#def367] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:193:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 193 | "\x00\x00\x6f\x00\x03\x1b", 0x01a1 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 191| "\x00\x00\x7a\x00\x03\x0c", 0x017e # 192| "\x00\x00\x4f\x00\x03\x1b", 0x01a0 # 193|-> "\x00\x00\x6f\x00\x03\x1b", 0x01a1 # 194| "\x00\x00\x55\x00\x03\x1b", 0x01af # 195| "\x00\x00\x75\x00\x03\x1b", 0x01b0 Error: COMPILER_WARNING (CWE-909): [#def368] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:195:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 195 | "\x00\x00\x75\x00\x03\x1b", 0x01b0 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 193| "\x00\x00\x6f\x00\x03\x1b", 0x01a1 # 194| "\x00\x00\x55\x00\x03\x1b", 0x01af # 195|-> "\x00\x00\x75\x00\x03\x1b", 0x01b0 # 196| "\x00\x00\x41\x00\x03\x0c", 0x01cd # 197| "\x00\x00\x61\x00\x03\x0c", 0x01ce Error: COMPILER_WARNING: [#def369] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:195:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 195 | "\x00\x00\x75\x00\x03\x1b", 0x01b0 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 193| "\x00\x00\x6f\x00\x03\x1b", 0x01a1 # 194| "\x00\x00\x55\x00\x03\x1b", 0x01af # 195|-> "\x00\x00\x75\x00\x03\x1b", 0x01b0 # 196| "\x00\x00\x41\x00\x03\x0c", 0x01cd # 197| "\x00\x00\x61\x00\x03\x0c", 0x01ce Error: COMPILER_WARNING: [#def370] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:196:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 196 | "\x00\x00\x41\x00\x03\x0c", 0x01cd # | ^~~~~~~~~~~~~~~~~~~~~~~ # 194| "\x00\x00\x55\x00\x03\x1b", 0x01af # 195| "\x00\x00\x75\x00\x03\x1b", 0x01b0 # 196|-> "\x00\x00\x41\x00\x03\x0c", 0x01cd # 197| "\x00\x00\x61\x00\x03\x0c", 0x01ce # 198| "\x00\x00\x49\x00\x03\x0c", 0x01cf Error: COMPILER_WARNING: [#def371] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:197:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 197 | "\x00\x00\x61\x00\x03\x0c", 0x01ce # | ^~~~~~~~~~~~~~~~~~~~~~~ # 195| "\x00\x00\x75\x00\x03\x1b", 0x01b0 # 196| "\x00\x00\x41\x00\x03\x0c", 0x01cd # 197|-> "\x00\x00\x61\x00\x03\x0c", 0x01ce # 198| "\x00\x00\x49\x00\x03\x0c", 0x01cf # 199| "\x00\x00\x69\x00\x03\x0c", 0x01d0 Error: COMPILER_WARNING: [#def372] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:198:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 198 | "\x00\x00\x49\x00\x03\x0c", 0x01cf # | ^~~~~~~~~~~~~~~~~~~~~~~ # 196| "\x00\x00\x41\x00\x03\x0c", 0x01cd # 197| "\x00\x00\x61\x00\x03\x0c", 0x01ce # 198|-> "\x00\x00\x49\x00\x03\x0c", 0x01cf # 199| "\x00\x00\x69\x00\x03\x0c", 0x01d0 # 200| "\x00\x00\x4f\x00\x03\x0c", 0x01d1 Error: COMPILER_WARNING: [#def373] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:199:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 199 | "\x00\x00\x69\x00\x03\x0c", 0x01d0 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 197| "\x00\x00\x61\x00\x03\x0c", 0x01ce # 198| "\x00\x00\x49\x00\x03\x0c", 0x01cf # 199|-> "\x00\x00\x69\x00\x03\x0c", 0x01d0 # 200| "\x00\x00\x4f\x00\x03\x0c", 0x01d1 # 201| "\x00\x00\x6f\x00\x03\x0c", 0x01d2 Error: COMPILER_WARNING: [#def374] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:200:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 200 | "\x00\x00\x4f\x00\x03\x0c", 0x01d1 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 198| "\x00\x00\x49\x00\x03\x0c", 0x01cf # 199| "\x00\x00\x69\x00\x03\x0c", 0x01d0 # 200|-> "\x00\x00\x4f\x00\x03\x0c", 0x01d1 # 201| "\x00\x00\x6f\x00\x03\x0c", 0x01d2 # 202| "\x00\x00\x55\x00\x03\x0c", 0x01d3 Error: COMPILER_WARNING: [#def375] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:201:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 201 | "\x00\x00\x6f\x00\x03\x0c", 0x01d2 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 199| "\x00\x00\x69\x00\x03\x0c", 0x01d0 # 200| "\x00\x00\x4f\x00\x03\x0c", 0x01d1 # 201|-> "\x00\x00\x6f\x00\x03\x0c", 0x01d2 # 202| "\x00\x00\x55\x00\x03\x0c", 0x01d3 # 203| "\x00\x00\x75\x00\x03\x0c", 0x01d4 Error: COMPILER_WARNING: [#def376] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:202:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 202 | "\x00\x00\x55\x00\x03\x0c", 0x01d3 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 200| "\x00\x00\x4f\x00\x03\x0c", 0x01d1 # 201| "\x00\x00\x6f\x00\x03\x0c", 0x01d2 # 202|-> "\x00\x00\x55\x00\x03\x0c", 0x01d3 # 203| "\x00\x00\x75\x00\x03\x0c", 0x01d4 # 204| "\x00\x00\xdc\x00\x03\x04", 0x01d5 Error: COMPILER_WARNING: [#def377] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:203:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 203 | "\x00\x00\x75\x00\x03\x0c", 0x01d4 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 201| "\x00\x00\x6f\x00\x03\x0c", 0x01d2 # 202| "\x00\x00\x55\x00\x03\x0c", 0x01d3 # 203|-> "\x00\x00\x75\x00\x03\x0c", 0x01d4 # 204| "\x00\x00\xdc\x00\x03\x04", 0x01d5 # 205| "\x00\x00\xfc\x00\x03\x04", 0x01d6 Error: COMPILER_WARNING: [#def378] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:204:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 204 | "\x00\x00\xdc\x00\x03\x04", 0x01d5 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 202| "\x00\x00\x55\x00\x03\x0c", 0x01d3 # 203| "\x00\x00\x75\x00\x03\x0c", 0x01d4 # 204|-> "\x00\x00\xdc\x00\x03\x04", 0x01d5 # 205| "\x00\x00\xfc\x00\x03\x04", 0x01d6 # 206| "\x00\x00\xdc\x00\x03\x01", 0x01d7 Error: COMPILER_WARNING: [#def379] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:205:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 205 | "\x00\x00\xfc\x00\x03\x04", 0x01d6 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 203| "\x00\x00\x75\x00\x03\x0c", 0x01d4 # 204| "\x00\x00\xdc\x00\x03\x04", 0x01d5 # 205|-> "\x00\x00\xfc\x00\x03\x04", 0x01d6 # 206| "\x00\x00\xdc\x00\x03\x01", 0x01d7 # 207| "\x00\x00\xfc\x00\x03\x01", 0x01d8 Error: COMPILER_WARNING: [#def380] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:206:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 206 | "\x00\x00\xdc\x00\x03\x01", 0x01d7 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 204| "\x00\x00\xdc\x00\x03\x04", 0x01d5 # 205| "\x00\x00\xfc\x00\x03\x04", 0x01d6 # 206|-> "\x00\x00\xdc\x00\x03\x01", 0x01d7 # 207| "\x00\x00\xfc\x00\x03\x01", 0x01d8 # 208| "\x00\x00\xdc\x00\x03\x0c", 0x01d9 Error: COMPILER_WARNING: [#def381] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:207:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 207 | "\x00\x00\xfc\x00\x03\x01", 0x01d8 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 205| "\x00\x00\xfc\x00\x03\x04", 0x01d6 # 206| "\x00\x00\xdc\x00\x03\x01", 0x01d7 # 207|-> "\x00\x00\xfc\x00\x03\x01", 0x01d8 # 208| "\x00\x00\xdc\x00\x03\x0c", 0x01d9 # 209| "\x00\x00\xfc\x00\x03\x0c", 0x01da Error: COMPILER_WARNING: [#def382] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:208:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 208 | "\x00\x00\xdc\x00\x03\x0c", 0x01d9 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 206| "\x00\x00\xdc\x00\x03\x01", 0x01d7 # 207| "\x00\x00\xfc\x00\x03\x01", 0x01d8 # 208|-> "\x00\x00\xdc\x00\x03\x0c", 0x01d9 # 209| "\x00\x00\xfc\x00\x03\x0c", 0x01da # 210| "\x00\x00\xdc\x00\x03\x00", 0x01db Error: COMPILER_WARNING: [#def383] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:209:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 209 | "\x00\x00\xfc\x00\x03\x0c", 0x01da # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 207| "\x00\x00\xfc\x00\x03\x01", 0x01d8 # 208| "\x00\x00\xdc\x00\x03\x0c", 0x01d9 # 209|-> "\x00\x00\xfc\x00\x03\x0c", 0x01da # 210| "\x00\x00\xdc\x00\x03\x00", 0x01db # 211| "\x00\x00\xfc\x00\x03\x00", 0x01dc Error: COMPILER_WARNING: [#def384] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:210:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 210 | "\x00\x00\xdc\x00\x03\x00", 0x01db # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 208| "\x00\x00\xdc\x00\x03\x0c", 0x01d9 # 209| "\x00\x00\xfc\x00\x03\x0c", 0x01da # 210|-> "\x00\x00\xdc\x00\x03\x00", 0x01db # 211| "\x00\x00\xfc\x00\x03\x00", 0x01dc # 212| "\x00\x00\xc4\x00\x03\x04", 0x01de Error: COMPILER_WARNING: [#def385] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:211:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 211 | "\x00\x00\xfc\x00\x03\x00", 0x01dc # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 209| "\x00\x00\xfc\x00\x03\x0c", 0x01da # 210| "\x00\x00\xdc\x00\x03\x00", 0x01db # 211|-> "\x00\x00\xfc\x00\x03\x00", 0x01dc # 212| "\x00\x00\xc4\x00\x03\x04", 0x01de # 213| "\x00\x00\xe4\x00\x03\x04", 0x01df Error: COMPILER_WARNING: [#def386] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:212:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 212 | "\x00\x00\xc4\x00\x03\x04", 0x01de # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 210| "\x00\x00\xdc\x00\x03\x00", 0x01db # 211| "\x00\x00\xfc\x00\x03\x00", 0x01dc # 212|-> "\x00\x00\xc4\x00\x03\x04", 0x01de # 213| "\x00\x00\xe4\x00\x03\x04", 0x01df # 214| "\x00\x02\x26\x00\x03\x04", 0x01e0 Error: COMPILER_WARNING: [#def387] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:213:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 213 | "\x00\x00\xe4\x00\x03\x04", 0x01df # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 211| "\x00\x00\xfc\x00\x03\x00", 0x01dc # 212| "\x00\x00\xc4\x00\x03\x04", 0x01de # 213|-> "\x00\x00\xe4\x00\x03\x04", 0x01df # 214| "\x00\x02\x26\x00\x03\x04", 0x01e0 # 215| "\x00\x02\x27\x00\x03\x04", 0x01e1 Error: COMPILER_WARNING (CWE-909): [#def388] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:215:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 215 | "\x00\x02\x27\x00\x03\x04", 0x01e1 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 213| "\x00\x00\xe4\x00\x03\x04", 0x01df # 214| "\x00\x02\x26\x00\x03\x04", 0x01e0 # 215|-> "\x00\x02\x27\x00\x03\x04", 0x01e1 # 216| "\x00\x00\xc6\x00\x03\x04", 0x01e2 # 217| "\x00\x00\xe6\x00\x03\x04", 0x01e3 Error: COMPILER_WARNING: [#def389] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:215:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 215 | "\x00\x02\x27\x00\x03\x04", 0x01e1 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 213| "\x00\x00\xe4\x00\x03\x04", 0x01df # 214| "\x00\x02\x26\x00\x03\x04", 0x01e0 # 215|-> "\x00\x02\x27\x00\x03\x04", 0x01e1 # 216| "\x00\x00\xc6\x00\x03\x04", 0x01e2 # 217| "\x00\x00\xe6\x00\x03\x04", 0x01e3 Error: COMPILER_WARNING: [#def390] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:216:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 216 | "\x00\x00\xc6\x00\x03\x04", 0x01e2 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 214| "\x00\x02\x26\x00\x03\x04", 0x01e0 # 215| "\x00\x02\x27\x00\x03\x04", 0x01e1 # 216|-> "\x00\x00\xc6\x00\x03\x04", 0x01e2 # 217| "\x00\x00\xe6\x00\x03\x04", 0x01e3 # 218| "\x00\x00\x47\x00\x03\x0c", 0x01e6 Error: COMPILER_WARNING: [#def391] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:217:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 217 | "\x00\x00\xe6\x00\x03\x04", 0x01e3 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 215| "\x00\x02\x27\x00\x03\x04", 0x01e1 # 216| "\x00\x00\xc6\x00\x03\x04", 0x01e2 # 217|-> "\x00\x00\xe6\x00\x03\x04", 0x01e3 # 218| "\x00\x00\x47\x00\x03\x0c", 0x01e6 # 219| "\x00\x00\x67\x00\x03\x0c", 0x01e7 Error: COMPILER_WARNING: [#def392] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:218:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 218 | "\x00\x00\x47\x00\x03\x0c", 0x01e6 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 216| "\x00\x00\xc6\x00\x03\x04", 0x01e2 # 217| "\x00\x00\xe6\x00\x03\x04", 0x01e3 # 218|-> "\x00\x00\x47\x00\x03\x0c", 0x01e6 # 219| "\x00\x00\x67\x00\x03\x0c", 0x01e7 # 220| "\x00\x00\x4b\x00\x03\x0c", 0x01e8 Error: COMPILER_WARNING: [#def393] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:219:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 219 | "\x00\x00\x67\x00\x03\x0c", 0x01e7 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 217| "\x00\x00\xe6\x00\x03\x04", 0x01e3 # 218| "\x00\x00\x47\x00\x03\x0c", 0x01e6 # 219|-> "\x00\x00\x67\x00\x03\x0c", 0x01e7 # 220| "\x00\x00\x4b\x00\x03\x0c", 0x01e8 # 221| "\x00\x00\x6b\x00\x03\x0c", 0x01e9 Error: COMPILER_WARNING: [#def394] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:220:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 220 | "\x00\x00\x4b\x00\x03\x0c", 0x01e8 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 218| "\x00\x00\x47\x00\x03\x0c", 0x01e6 # 219| "\x00\x00\x67\x00\x03\x0c", 0x01e7 # 220|-> "\x00\x00\x4b\x00\x03\x0c", 0x01e8 # 221| "\x00\x00\x6b\x00\x03\x0c", 0x01e9 # 222| "\x00\x00\x4f\x00\x03\x28", 0x01ea Error: COMPILER_WARNING: [#def395] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:221:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 221 | "\x00\x00\x6b\x00\x03\x0c", 0x01e9 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 219| "\x00\x00\x67\x00\x03\x0c", 0x01e7 # 220| "\x00\x00\x4b\x00\x03\x0c", 0x01e8 # 221|-> "\x00\x00\x6b\x00\x03\x0c", 0x01e9 # 222| "\x00\x00\x4f\x00\x03\x28", 0x01ea # 223| "\x00\x00\x6f\x00\x03\x28", 0x01eb Error: COMPILER_WARNING (CWE-909): [#def396] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:222:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 222 | "\x00\x00\x4f\x00\x03\x28", 0x01ea # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 220| "\x00\x00\x4b\x00\x03\x0c", 0x01e8 # 221| "\x00\x00\x6b\x00\x03\x0c", 0x01e9 # 222|-> "\x00\x00\x4f\x00\x03\x28", 0x01ea # 223| "\x00\x00\x6f\x00\x03\x28", 0x01eb # 224| "\x00\x01\xea\x00\x03\x04", 0x01ec Error: COMPILER_WARNING: [#def397] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:222:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 222 | "\x00\x00\x4f\x00\x03\x28", 0x01ea # | ^~~~~~~~~~~~~~~~~~~~ # 220| "\x00\x00\x4b\x00\x03\x0c", 0x01e8 # 221| "\x00\x00\x6b\x00\x03\x0c", 0x01e9 # 222|-> "\x00\x00\x4f\x00\x03\x28", 0x01ea # 223| "\x00\x00\x6f\x00\x03\x28", 0x01eb # 224| "\x00\x01\xea\x00\x03\x04", 0x01ec Error: COMPILER_WARNING: [#def398] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:223:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 223 | "\x00\x00\x6f\x00\x03\x28", 0x01eb # | ^~~~~~~~~~~~~~~~~~~~ # 221| "\x00\x00\x6b\x00\x03\x0c", 0x01e9 # 222| "\x00\x00\x4f\x00\x03\x28", 0x01ea # 223|-> "\x00\x00\x6f\x00\x03\x28", 0x01eb # 224| "\x00\x01\xea\x00\x03\x04", 0x01ec # 225| "\x00\x01\xeb\x00\x03\x04", 0x01ed Error: COMPILER_WARNING: [#def399] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:224:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 224 | "\x00\x01\xea\x00\x03\x04", 0x01ec # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 222| "\x00\x00\x4f\x00\x03\x28", 0x01ea # 223| "\x00\x00\x6f\x00\x03\x28", 0x01eb # 224|-> "\x00\x01\xea\x00\x03\x04", 0x01ec # 225| "\x00\x01\xeb\x00\x03\x04", 0x01ed # 226| "\x00\x01\xb7\x00\x03\x0c", 0x01ee Error: COMPILER_WARNING: [#def400] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:225:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 225 | "\x00\x01\xeb\x00\x03\x04", 0x01ed # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 223| "\x00\x00\x6f\x00\x03\x28", 0x01eb # 224| "\x00\x01\xea\x00\x03\x04", 0x01ec # 225|-> "\x00\x01\xeb\x00\x03\x04", 0x01ed # 226| "\x00\x01\xb7\x00\x03\x0c", 0x01ee # 227| "\x00\x02\x92\x00\x03\x0c", 0x01ef Error: COMPILER_WARNING: [#def401] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:226:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 226 | "\x00\x01\xb7\x00\x03\x0c", 0x01ee # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 224| "\x00\x01\xea\x00\x03\x04", 0x01ec # 225| "\x00\x01\xeb\x00\x03\x04", 0x01ed # 226|-> "\x00\x01\xb7\x00\x03\x0c", 0x01ee # 227| "\x00\x02\x92\x00\x03\x0c", 0x01ef # 228| "\x00\x00\x6a\x00\x03\x0c", 0x01f0 Error: COMPILER_WARNING: [#def402] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:227:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 227 | "\x00\x02\x92\x00\x03\x0c", 0x01ef # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 225| "\x00\x01\xeb\x00\x03\x04", 0x01ed # 226| "\x00\x01\xb7\x00\x03\x0c", 0x01ee # 227|-> "\x00\x02\x92\x00\x03\x0c", 0x01ef # 228| "\x00\x00\x6a\x00\x03\x0c", 0x01f0 # 229| "\x00\x00\x47\x00\x03\x01", 0x01f4 Error: COMPILER_WARNING: [#def403] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:228:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 228 | "\x00\x00\x6a\x00\x03\x0c", 0x01f0 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 226| "\x00\x01\xb7\x00\x03\x0c", 0x01ee # 227| "\x00\x02\x92\x00\x03\x0c", 0x01ef # 228|-> "\x00\x00\x6a\x00\x03\x0c", 0x01f0 # 229| "\x00\x00\x47\x00\x03\x01", 0x01f4 # 230| "\x00\x00\x67\x00\x03\x01", 0x01f5 Error: COMPILER_WARNING: [#def404] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:229:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 229 | "\x00\x00\x47\x00\x03\x01", 0x01f4 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 227| "\x00\x02\x92\x00\x03\x0c", 0x01ef # 228| "\x00\x00\x6a\x00\x03\x0c", 0x01f0 # 229|-> "\x00\x00\x47\x00\x03\x01", 0x01f4 # 230| "\x00\x00\x67\x00\x03\x01", 0x01f5 # 231| "\x00\x00\x4e\x00\x03\x00", 0x01f8 Error: COMPILER_WARNING: [#def405] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:230:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 230 | "\x00\x00\x67\x00\x03\x01", 0x01f5 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 228| "\x00\x00\x6a\x00\x03\x0c", 0x01f0 # 229| "\x00\x00\x47\x00\x03\x01", 0x01f4 # 230|-> "\x00\x00\x67\x00\x03\x01", 0x01f5 # 231| "\x00\x00\x4e\x00\x03\x00", 0x01f8 # 232| "\x00\x00\x6e\x00\x03\x00", 0x01f9 Error: COMPILER_WARNING: [#def406] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:231:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 231 | "\x00\x00\x4e\x00\x03\x00", 0x01f8 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 229| "\x00\x00\x47\x00\x03\x01", 0x01f4 # 230| "\x00\x00\x67\x00\x03\x01", 0x01f5 # 231|-> "\x00\x00\x4e\x00\x03\x00", 0x01f8 # 232| "\x00\x00\x6e\x00\x03\x00", 0x01f9 # 233| "\x00\x00\xc5\x00\x03\x01", 0x01fa Error: COMPILER_WARNING: [#def407] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:232:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 232 | "\x00\x00\x6e\x00\x03\x00", 0x01f9 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 230| "\x00\x00\x67\x00\x03\x01", 0x01f5 # 231| "\x00\x00\x4e\x00\x03\x00", 0x01f8 # 232|-> "\x00\x00\x6e\x00\x03\x00", 0x01f9 # 233| "\x00\x00\xc5\x00\x03\x01", 0x01fa # 234| "\x00\x00\xe5\x00\x03\x01", 0x01fb Error: COMPILER_WARNING: [#def408] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:233:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 233 | "\x00\x00\xc5\x00\x03\x01", 0x01fa # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 231| "\x00\x00\x4e\x00\x03\x00", 0x01f8 # 232| "\x00\x00\x6e\x00\x03\x00", 0x01f9 # 233|-> "\x00\x00\xc5\x00\x03\x01", 0x01fa # 234| "\x00\x00\xe5\x00\x03\x01", 0x01fb # 235| "\x00\x00\xc6\x00\x03\x01", 0x01fc Error: COMPILER_WARNING: [#def409] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:234:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 234 | "\x00\x00\xe5\x00\x03\x01", 0x01fb # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 232| "\x00\x00\x6e\x00\x03\x00", 0x01f9 # 233| "\x00\x00\xc5\x00\x03\x01", 0x01fa # 234|-> "\x00\x00\xe5\x00\x03\x01", 0x01fb # 235| "\x00\x00\xc6\x00\x03\x01", 0x01fc # 236| "\x00\x00\xe6\x00\x03\x01", 0x01fd Error: COMPILER_WARNING: [#def410] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:235:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 235 | "\x00\x00\xc6\x00\x03\x01", 0x01fc # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 233| "\x00\x00\xc5\x00\x03\x01", 0x01fa # 234| "\x00\x00\xe5\x00\x03\x01", 0x01fb # 235|-> "\x00\x00\xc6\x00\x03\x01", 0x01fc # 236| "\x00\x00\xe6\x00\x03\x01", 0x01fd # 237| "\x00\x00\xd8\x00\x03\x01", 0x01fe Error: COMPILER_WARNING: [#def411] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:236:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 236 | "\x00\x00\xe6\x00\x03\x01", 0x01fd # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 234| "\x00\x00\xe5\x00\x03\x01", 0x01fb # 235| "\x00\x00\xc6\x00\x03\x01", 0x01fc # 236|-> "\x00\x00\xe6\x00\x03\x01", 0x01fd # 237| "\x00\x00\xd8\x00\x03\x01", 0x01fe # 238| "\x00\x00\xf8\x00\x03\x01", 0x01ff Error: COMPILER_WARNING: [#def412] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:237:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 237 | "\x00\x00\xd8\x00\x03\x01", 0x01fe # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 235| "\x00\x00\xc6\x00\x03\x01", 0x01fc # 236| "\x00\x00\xe6\x00\x03\x01", 0x01fd # 237|-> "\x00\x00\xd8\x00\x03\x01", 0x01fe # 238| "\x00\x00\xf8\x00\x03\x01", 0x01ff # 239| "\x00\x00\x41\x00\x03\x0f", 0x0200 Error: COMPILER_WARNING: [#def413] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:238:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 238 | "\x00\x00\xf8\x00\x03\x01", 0x01ff # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 236| "\x00\x00\xe6\x00\x03\x01", 0x01fd # 237| "\x00\x00\xd8\x00\x03\x01", 0x01fe # 238|-> "\x00\x00\xf8\x00\x03\x01", 0x01ff # 239| "\x00\x00\x41\x00\x03\x0f", 0x0200 # 240| "\x00\x00\x61\x00\x03\x0f", 0x0201 Error: COMPILER_WARNING: [#def414] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:239:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 239 | "\x00\x00\x41\x00\x03\x0f", 0x0200 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 237| "\x00\x00\xd8\x00\x03\x01", 0x01fe # 238| "\x00\x00\xf8\x00\x03\x01", 0x01ff # 239|-> "\x00\x00\x41\x00\x03\x0f", 0x0200 # 240| "\x00\x00\x61\x00\x03\x0f", 0x0201 # 241| "\x00\x00\x41\x00\x03\x11", 0x0202 Error: COMPILER_WARNING: [#def415] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:240:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 240 | "\x00\x00\x61\x00\x03\x0f", 0x0201 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 238| "\x00\x00\xf8\x00\x03\x01", 0x01ff # 239| "\x00\x00\x41\x00\x03\x0f", 0x0200 # 240|-> "\x00\x00\x61\x00\x03\x0f", 0x0201 # 241| "\x00\x00\x41\x00\x03\x11", 0x0202 # 242| "\x00\x00\x61\x00\x03\x11", 0x0203 Error: COMPILER_WARNING: [#def416] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:241:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 241 | "\x00\x00\x41\x00\x03\x11", 0x0202 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 239| "\x00\x00\x41\x00\x03\x0f", 0x0200 # 240| "\x00\x00\x61\x00\x03\x0f", 0x0201 # 241|-> "\x00\x00\x41\x00\x03\x11", 0x0202 # 242| "\x00\x00\x61\x00\x03\x11", 0x0203 # 243| "\x00\x00\x45\x00\x03\x0f", 0x0204 Error: COMPILER_WARNING: [#def417] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:242:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 242 | "\x00\x00\x61\x00\x03\x11", 0x0203 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 240| "\x00\x00\x61\x00\x03\x0f", 0x0201 # 241| "\x00\x00\x41\x00\x03\x11", 0x0202 # 242|-> "\x00\x00\x61\x00\x03\x11", 0x0203 # 243| "\x00\x00\x45\x00\x03\x0f", 0x0204 # 244| "\x00\x00\x65\x00\x03\x0f", 0x0205 Error: COMPILER_WARNING: [#def418] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:243:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 243 | "\x00\x00\x45\x00\x03\x0f", 0x0204 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 241| "\x00\x00\x41\x00\x03\x11", 0x0202 # 242| "\x00\x00\x61\x00\x03\x11", 0x0203 # 243|-> "\x00\x00\x45\x00\x03\x0f", 0x0204 # 244| "\x00\x00\x65\x00\x03\x0f", 0x0205 # 245| "\x00\x00\x45\x00\x03\x11", 0x0206 Error: COMPILER_WARNING: [#def419] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:244:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 244 | "\x00\x00\x65\x00\x03\x0f", 0x0205 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 242| "\x00\x00\x61\x00\x03\x11", 0x0203 # 243| "\x00\x00\x45\x00\x03\x0f", 0x0204 # 244|-> "\x00\x00\x65\x00\x03\x0f", 0x0205 # 245| "\x00\x00\x45\x00\x03\x11", 0x0206 # 246| "\x00\x00\x65\x00\x03\x11", 0x0207 Error: COMPILER_WARNING: [#def420] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:245:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 245 | "\x00\x00\x45\x00\x03\x11", 0x0206 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 243| "\x00\x00\x45\x00\x03\x0f", 0x0204 # 244| "\x00\x00\x65\x00\x03\x0f", 0x0205 # 245|-> "\x00\x00\x45\x00\x03\x11", 0x0206 # 246| "\x00\x00\x65\x00\x03\x11", 0x0207 # 247| "\x00\x00\x49\x00\x03\x0f", 0x0208 Error: COMPILER_WARNING: [#def421] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:246:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 246 | "\x00\x00\x65\x00\x03\x11", 0x0207 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 244| "\x00\x00\x65\x00\x03\x0f", 0x0205 # 245| "\x00\x00\x45\x00\x03\x11", 0x0206 # 246|-> "\x00\x00\x65\x00\x03\x11", 0x0207 # 247| "\x00\x00\x49\x00\x03\x0f", 0x0208 # 248| "\x00\x00\x69\x00\x03\x0f", 0x0209 Error: COMPILER_WARNING: [#def422] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:247:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 247 | "\x00\x00\x49\x00\x03\x0f", 0x0208 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 245| "\x00\x00\x45\x00\x03\x11", 0x0206 # 246| "\x00\x00\x65\x00\x03\x11", 0x0207 # 247|-> "\x00\x00\x49\x00\x03\x0f", 0x0208 # 248| "\x00\x00\x69\x00\x03\x0f", 0x0209 # 249| "\x00\x00\x49\x00\x03\x11", 0x020a Error: COMPILER_WARNING: [#def423] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:248:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 248 | "\x00\x00\x69\x00\x03\x0f", 0x0209 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 246| "\x00\x00\x65\x00\x03\x11", 0x0207 # 247| "\x00\x00\x49\x00\x03\x0f", 0x0208 # 248|-> "\x00\x00\x69\x00\x03\x0f", 0x0209 # 249| "\x00\x00\x49\x00\x03\x11", 0x020a # 250| "\x00\x00\x69\x00\x03\x11", 0x020b Error: COMPILER_WARNING: [#def424] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:249:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 249 | "\x00\x00\x49\x00\x03\x11", 0x020a # | ^~~~~~~~~~~~~~~~~~~~~~~ # 247| "\x00\x00\x49\x00\x03\x0f", 0x0208 # 248| "\x00\x00\x69\x00\x03\x0f", 0x0209 # 249|-> "\x00\x00\x49\x00\x03\x11", 0x020a # 250| "\x00\x00\x69\x00\x03\x11", 0x020b # 251| "\x00\x00\x4f\x00\x03\x0f", 0x020c Error: COMPILER_WARNING: [#def425] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:250:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 250 | "\x00\x00\x69\x00\x03\x11", 0x020b # | ^~~~~~~~~~~~~~~~~~~~~~~ # 248| "\x00\x00\x69\x00\x03\x0f", 0x0209 # 249| "\x00\x00\x49\x00\x03\x11", 0x020a # 250|-> "\x00\x00\x69\x00\x03\x11", 0x020b # 251| "\x00\x00\x4f\x00\x03\x0f", 0x020c # 252| "\x00\x00\x6f\x00\x03\x0f", 0x020d Error: COMPILER_WARNING: [#def426] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:251:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 251 | "\x00\x00\x4f\x00\x03\x0f", 0x020c # | ^~~~~~~~~~~~~~~~~~~~~~~ # 249| "\x00\x00\x49\x00\x03\x11", 0x020a # 250| "\x00\x00\x69\x00\x03\x11", 0x020b # 251|-> "\x00\x00\x4f\x00\x03\x0f", 0x020c # 252| "\x00\x00\x6f\x00\x03\x0f", 0x020d # 253| "\x00\x00\x4f\x00\x03\x11", 0x020e Error: COMPILER_WARNING: [#def427] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:252:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 252 | "\x00\x00\x6f\x00\x03\x0f", 0x020d # | ^~~~~~~~~~~~~~~~~~~~~~~ # 250| "\x00\x00\x69\x00\x03\x11", 0x020b # 251| "\x00\x00\x4f\x00\x03\x0f", 0x020c # 252|-> "\x00\x00\x6f\x00\x03\x0f", 0x020d # 253| "\x00\x00\x4f\x00\x03\x11", 0x020e # 254| "\x00\x00\x6f\x00\x03\x11", 0x020f Error: COMPILER_WARNING: [#def428] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:253:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 253 | "\x00\x00\x4f\x00\x03\x11", 0x020e # | ^~~~~~~~~~~~~~~~~~~~~~~ # 251| "\x00\x00\x4f\x00\x03\x0f", 0x020c # 252| "\x00\x00\x6f\x00\x03\x0f", 0x020d # 253|-> "\x00\x00\x4f\x00\x03\x11", 0x020e # 254| "\x00\x00\x6f\x00\x03\x11", 0x020f # 255| "\x00\x00\x52\x00\x03\x0f", 0x0210 Error: COMPILER_WARNING: [#def429] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:254:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 254 | "\x00\x00\x6f\x00\x03\x11", 0x020f # | ^~~~~~~~~~~~~~~~~~~~~~~ # 252| "\x00\x00\x6f\x00\x03\x0f", 0x020d # 253| "\x00\x00\x4f\x00\x03\x11", 0x020e # 254|-> "\x00\x00\x6f\x00\x03\x11", 0x020f # 255| "\x00\x00\x52\x00\x03\x0f", 0x0210 # 256| "\x00\x00\x72\x00\x03\x0f", 0x0211 Error: COMPILER_WARNING: [#def430] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:255:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 255 | "\x00\x00\x52\x00\x03\x0f", 0x0210 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 253| "\x00\x00\x4f\x00\x03\x11", 0x020e # 254| "\x00\x00\x6f\x00\x03\x11", 0x020f # 255|-> "\x00\x00\x52\x00\x03\x0f", 0x0210 # 256| "\x00\x00\x72\x00\x03\x0f", 0x0211 # 257| "\x00\x00\x52\x00\x03\x11", 0x0212 Error: COMPILER_WARNING: [#def431] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:256:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 256 | "\x00\x00\x72\x00\x03\x0f", 0x0211 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 254| "\x00\x00\x6f\x00\x03\x11", 0x020f # 255| "\x00\x00\x52\x00\x03\x0f", 0x0210 # 256|-> "\x00\x00\x72\x00\x03\x0f", 0x0211 # 257| "\x00\x00\x52\x00\x03\x11", 0x0212 # 258| "\x00\x00\x72\x00\x03\x11", 0x0213 Error: COMPILER_WARNING: [#def432] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:257:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 257 | "\x00\x00\x52\x00\x03\x11", 0x0212 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 255| "\x00\x00\x52\x00\x03\x0f", 0x0210 # 256| "\x00\x00\x72\x00\x03\x0f", 0x0211 # 257|-> "\x00\x00\x52\x00\x03\x11", 0x0212 # 258| "\x00\x00\x72\x00\x03\x11", 0x0213 # 259| "\x00\x00\x55\x00\x03\x0f", 0x0214 Error: COMPILER_WARNING: [#def433] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:258:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 258 | "\x00\x00\x72\x00\x03\x11", 0x0213 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 256| "\x00\x00\x72\x00\x03\x0f", 0x0211 # 257| "\x00\x00\x52\x00\x03\x11", 0x0212 # 258|-> "\x00\x00\x72\x00\x03\x11", 0x0213 # 259| "\x00\x00\x55\x00\x03\x0f", 0x0214 # 260| "\x00\x00\x75\x00\x03\x0f", 0x0215 Error: COMPILER_WARNING: [#def434] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:259:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 259 | "\x00\x00\x55\x00\x03\x0f", 0x0214 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 257| "\x00\x00\x52\x00\x03\x11", 0x0212 # 258| "\x00\x00\x72\x00\x03\x11", 0x0213 # 259|-> "\x00\x00\x55\x00\x03\x0f", 0x0214 # 260| "\x00\x00\x75\x00\x03\x0f", 0x0215 # 261| "\x00\x00\x55\x00\x03\x11", 0x0216 Error: COMPILER_WARNING: [#def435] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:260:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 260 | "\x00\x00\x75\x00\x03\x0f", 0x0215 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 258| "\x00\x00\x72\x00\x03\x11", 0x0213 # 259| "\x00\x00\x55\x00\x03\x0f", 0x0214 # 260|-> "\x00\x00\x75\x00\x03\x0f", 0x0215 # 261| "\x00\x00\x55\x00\x03\x11", 0x0216 # 262| "\x00\x00\x75\x00\x03\x11", 0x0217 Error: COMPILER_WARNING: [#def436] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:261:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 261 | "\x00\x00\x55\x00\x03\x11", 0x0216 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 259| "\x00\x00\x55\x00\x03\x0f", 0x0214 # 260| "\x00\x00\x75\x00\x03\x0f", 0x0215 # 261|-> "\x00\x00\x55\x00\x03\x11", 0x0216 # 262| "\x00\x00\x75\x00\x03\x11", 0x0217 # 263| "\x00\x00\x53\x00\x03\x26", 0x0218 Error: COMPILER_WARNING: [#def437] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:262:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 262 | "\x00\x00\x75\x00\x03\x11", 0x0217 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 260| "\x00\x00\x75\x00\x03\x0f", 0x0215 # 261| "\x00\x00\x55\x00\x03\x11", 0x0216 # 262|-> "\x00\x00\x75\x00\x03\x11", 0x0217 # 263| "\x00\x00\x53\x00\x03\x26", 0x0218 # 264| "\x00\x00\x73\x00\x03\x26", 0x0219 Error: COMPILER_WARNING: [#def438] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:263:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 263 | "\x00\x00\x53\x00\x03\x26", 0x0218 # | ^~~~~~~~~~~~~~~~~~~~ # 261| "\x00\x00\x55\x00\x03\x11", 0x0216 # 262| "\x00\x00\x75\x00\x03\x11", 0x0217 # 263|-> "\x00\x00\x53\x00\x03\x26", 0x0218 # 264| "\x00\x00\x73\x00\x03\x26", 0x0219 # 265| "\x00\x00\x54\x00\x03\x26", 0x021a Error: COMPILER_WARNING: [#def439] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:264:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 264 | "\x00\x00\x73\x00\x03\x26", 0x0219 # | ^~~~~~~~~~~~~~~~~~~~ # 262| "\x00\x00\x75\x00\x03\x11", 0x0217 # 263| "\x00\x00\x53\x00\x03\x26", 0x0218 # 264|-> "\x00\x00\x73\x00\x03\x26", 0x0219 # 265| "\x00\x00\x54\x00\x03\x26", 0x021a # 266| "\x00\x00\x74\x00\x03\x26", 0x021b Error: COMPILER_WARNING: [#def440] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:265:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 265 | "\x00\x00\x54\x00\x03\x26", 0x021a # | ^~~~~~~~~~~~~~~~~~~~ # 263| "\x00\x00\x53\x00\x03\x26", 0x0218 # 264| "\x00\x00\x73\x00\x03\x26", 0x0219 # 265|-> "\x00\x00\x54\x00\x03\x26", 0x021a # 266| "\x00\x00\x74\x00\x03\x26", 0x021b # 267| "\x00\x00\x48\x00\x03\x0c", 0x021e Error: COMPILER_WARNING: [#def441] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:266:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 266 | "\x00\x00\x74\x00\x03\x26", 0x021b # | ^~~~~~~~~~~~~~~~~~~~ # 264| "\x00\x00\x73\x00\x03\x26", 0x0219 # 265| "\x00\x00\x54\x00\x03\x26", 0x021a # 266|-> "\x00\x00\x74\x00\x03\x26", 0x021b # 267| "\x00\x00\x48\x00\x03\x0c", 0x021e # 268| "\x00\x00\x68\x00\x03\x0c", 0x021f Error: COMPILER_WARNING: [#def442] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:267:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 267 | "\x00\x00\x48\x00\x03\x0c", 0x021e # | ^~~~~~~~~~~~~~~~~~~~~~~ # 265| "\x00\x00\x54\x00\x03\x26", 0x021a # 266| "\x00\x00\x74\x00\x03\x26", 0x021b # 267|-> "\x00\x00\x48\x00\x03\x0c", 0x021e # 268| "\x00\x00\x68\x00\x03\x0c", 0x021f # 269| "\x00\x00\x41\x00\x03\x07", 0x0226 Error: COMPILER_WARNING: [#def443] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:268:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 268 | "\x00\x00\x68\x00\x03\x0c", 0x021f # | ^~~~~~~~~~~~~~~~~~~~~~~ # 266| "\x00\x00\x74\x00\x03\x26", 0x021b # 267| "\x00\x00\x48\x00\x03\x0c", 0x021e # 268|-> "\x00\x00\x68\x00\x03\x0c", 0x021f # 269| "\x00\x00\x41\x00\x03\x07", 0x0226 # 270| "\x00\x00\x61\x00\x03\x07", 0x0227 Error: COMPILER_WARNING: [#def444] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:269:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 269 | "\x00\x00\x41\x00\x03\x07", 0x0226 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 267| "\x00\x00\x48\x00\x03\x0c", 0x021e # 268| "\x00\x00\x68\x00\x03\x0c", 0x021f # 269|-> "\x00\x00\x41\x00\x03\x07", 0x0226 # 270| "\x00\x00\x61\x00\x03\x07", 0x0227 # 271| "\x00\x00\x45\x00\x03\x27", 0x0228 Error: COMPILER_WARNING: [#def445] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:270:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 270 | "\x00\x00\x61\x00\x03\x07", 0x0227 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 268| "\x00\x00\x68\x00\x03\x0c", 0x021f # 269| "\x00\x00\x41\x00\x03\x07", 0x0226 # 270|-> "\x00\x00\x61\x00\x03\x07", 0x0227 # 271| "\x00\x00\x45\x00\x03\x27", 0x0228 # 272| "\x00\x00\x65\x00\x03\x27", 0x0229 Error: COMPILER_WARNING: [#def446] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:271:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 271 | "\x00\x00\x45\x00\x03\x27", 0x0228 # | ^~~~~~~~~~~~~~~~~~~~ # 269| "\x00\x00\x41\x00\x03\x07", 0x0226 # 270| "\x00\x00\x61\x00\x03\x07", 0x0227 # 271|-> "\x00\x00\x45\x00\x03\x27", 0x0228 # 272| "\x00\x00\x65\x00\x03\x27", 0x0229 # 273| "\x00\x00\xd6\x00\x03\x04", 0x022a Error: COMPILER_WARNING: [#def447] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:272:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 272 | "\x00\x00\x65\x00\x03\x27", 0x0229 # | ^~~~~~~~~~~~~~~~~~~~ # 270| "\x00\x00\x61\x00\x03\x07", 0x0227 # 271| "\x00\x00\x45\x00\x03\x27", 0x0228 # 272|-> "\x00\x00\x65\x00\x03\x27", 0x0229 # 273| "\x00\x00\xd6\x00\x03\x04", 0x022a # 274| "\x00\x00\xf6\x00\x03\x04", 0x022b Error: COMPILER_WARNING: [#def448] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:273:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 273 | "\x00\x00\xd6\x00\x03\x04", 0x022a # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 271| "\x00\x00\x45\x00\x03\x27", 0x0228 # 272| "\x00\x00\x65\x00\x03\x27", 0x0229 # 273|-> "\x00\x00\xd6\x00\x03\x04", 0x022a # 274| "\x00\x00\xf6\x00\x03\x04", 0x022b # 275| "\x00\x00\xd5\x00\x03\x04", 0x022c Error: COMPILER_WARNING: [#def449] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:274:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 274 | "\x00\x00\xf6\x00\x03\x04", 0x022b # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 272| "\x00\x00\x65\x00\x03\x27", 0x0229 # 273| "\x00\x00\xd6\x00\x03\x04", 0x022a # 274|-> "\x00\x00\xf6\x00\x03\x04", 0x022b # 275| "\x00\x00\xd5\x00\x03\x04", 0x022c # 276| "\x00\x00\xf5\x00\x03\x04", 0x022d Error: COMPILER_WARNING: [#def450] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:275:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 275 | "\x00\x00\xd5\x00\x03\x04", 0x022c # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 273| "\x00\x00\xd6\x00\x03\x04", 0x022a # 274| "\x00\x00\xf6\x00\x03\x04", 0x022b # 275|-> "\x00\x00\xd5\x00\x03\x04", 0x022c # 276| "\x00\x00\xf5\x00\x03\x04", 0x022d # 277| "\x00\x00\x4f\x00\x03\x07", 0x022e Error: COMPILER_WARNING (CWE-909): [#def451] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:277:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 277 | "\x00\x00\x4f\x00\x03\x07", 0x022e # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 275| "\x00\x00\xd5\x00\x03\x04", 0x022c # 276| "\x00\x00\xf5\x00\x03\x04", 0x022d # 277|-> "\x00\x00\x4f\x00\x03\x07", 0x022e # 278| "\x00\x00\x6f\x00\x03\x07", 0x022f # 279| "\x00\x02\x2e\x00\x03\x04", 0x0230 Error: COMPILER_WARNING: [#def452] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:277:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 277 | "\x00\x00\x4f\x00\x03\x07", 0x022e # | ^~~~~~~~~~~~~~~~~~~~~~~ # 275| "\x00\x00\xd5\x00\x03\x04", 0x022c # 276| "\x00\x00\xf5\x00\x03\x04", 0x022d # 277|-> "\x00\x00\x4f\x00\x03\x07", 0x022e # 278| "\x00\x00\x6f\x00\x03\x07", 0x022f # 279| "\x00\x02\x2e\x00\x03\x04", 0x0230 Error: COMPILER_WARNING: [#def453] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:278:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 278 | "\x00\x00\x6f\x00\x03\x07", 0x022f # | ^~~~~~~~~~~~~~~~~~~~~~~ # 276| "\x00\x00\xf5\x00\x03\x04", 0x022d # 277| "\x00\x00\x4f\x00\x03\x07", 0x022e # 278|-> "\x00\x00\x6f\x00\x03\x07", 0x022f # 279| "\x00\x02\x2e\x00\x03\x04", 0x0230 # 280| "\x00\x02\x2f\x00\x03\x04", 0x0231 Error: COMPILER_WARNING: [#def454] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:279:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 279 | "\x00\x02\x2e\x00\x03\x04", 0x0230 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 277| "\x00\x00\x4f\x00\x03\x07", 0x022e # 278| "\x00\x00\x6f\x00\x03\x07", 0x022f # 279|-> "\x00\x02\x2e\x00\x03\x04", 0x0230 # 280| "\x00\x02\x2f\x00\x03\x04", 0x0231 # 281| "\x00\x00\x59\x00\x03\x04", 0x0232 Error: COMPILER_WARNING: [#def455] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:280:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 280 | "\x00\x02\x2f\x00\x03\x04", 0x0231 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 278| "\x00\x00\x6f\x00\x03\x07", 0x022f # 279| "\x00\x02\x2e\x00\x03\x04", 0x0230 # 280|-> "\x00\x02\x2f\x00\x03\x04", 0x0231 # 281| "\x00\x00\x59\x00\x03\x04", 0x0232 # 282| "\x00\x00\x79\x00\x03\x04", 0x0233 Error: COMPILER_WARNING: [#def456] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:281:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 281 | "\x00\x00\x59\x00\x03\x04", 0x0232 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 279| "\x00\x02\x2e\x00\x03\x04", 0x0230 # 280| "\x00\x02\x2f\x00\x03\x04", 0x0231 # 281|-> "\x00\x00\x59\x00\x03\x04", 0x0232 # 282| "\x00\x00\x79\x00\x03\x04", 0x0233 # 283| "\x00\x00\xa8\x00\x03\x01", 0x0385 Error: COMPILER_WARNING: [#def457] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:282:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 282 | "\x00\x00\x79\x00\x03\x04", 0x0233 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 280| "\x00\x02\x2f\x00\x03\x04", 0x0231 # 281| "\x00\x00\x59\x00\x03\x04", 0x0232 # 282|-> "\x00\x00\x79\x00\x03\x04", 0x0233 # 283| "\x00\x00\xa8\x00\x03\x01", 0x0385 # 284| "\x00\x03\x91\x00\x03\x01", 0x0386 Error: COMPILER_WARNING: [#def458] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:283:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 283 | "\x00\x00\xa8\x00\x03\x01", 0x0385 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 281| "\x00\x00\x59\x00\x03\x04", 0x0232 # 282| "\x00\x00\x79\x00\x03\x04", 0x0233 # 283|-> "\x00\x00\xa8\x00\x03\x01", 0x0385 # 284| "\x00\x03\x91\x00\x03\x01", 0x0386 # 285| "\x00\x03\x95\x00\x03\x01", 0x0388 Error: COMPILER_WARNING: [#def459] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:284:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 284 | "\x00\x03\x91\x00\x03\x01", 0x0386 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 282| "\x00\x00\x79\x00\x03\x04", 0x0233 # 283| "\x00\x00\xa8\x00\x03\x01", 0x0385 # 284|-> "\x00\x03\x91\x00\x03\x01", 0x0386 # 285| "\x00\x03\x95\x00\x03\x01", 0x0388 # 286| "\x00\x03\x97\x00\x03\x01", 0x0389 Error: COMPILER_WARNING: [#def460] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:285:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 285 | "\x00\x03\x95\x00\x03\x01", 0x0388 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 283| "\x00\x00\xa8\x00\x03\x01", 0x0385 # 284| "\x00\x03\x91\x00\x03\x01", 0x0386 # 285|-> "\x00\x03\x95\x00\x03\x01", 0x0388 # 286| "\x00\x03\x97\x00\x03\x01", 0x0389 # 287| "\x00\x03\x99\x00\x03\x01", 0x038a Error: COMPILER_WARNING: [#def461] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:286:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 286 | "\x00\x03\x97\x00\x03\x01", 0x0389 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 284| "\x00\x03\x91\x00\x03\x01", 0x0386 # 285| "\x00\x03\x95\x00\x03\x01", 0x0388 # 286|-> "\x00\x03\x97\x00\x03\x01", 0x0389 # 287| "\x00\x03\x99\x00\x03\x01", 0x038a # 288| "\x00\x03\x9f\x00\x03\x01", 0x038c Error: COMPILER_WARNING: [#def462] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:287:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 287 | "\x00\x03\x99\x00\x03\x01", 0x038a # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 285| "\x00\x03\x95\x00\x03\x01", 0x0388 # 286| "\x00\x03\x97\x00\x03\x01", 0x0389 # 287|-> "\x00\x03\x99\x00\x03\x01", 0x038a # 288| "\x00\x03\x9f\x00\x03\x01", 0x038c # 289| "\x00\x03\xa5\x00\x03\x01", 0x038e Error: COMPILER_WARNING: [#def463] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:288:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 288 | "\x00\x03\x9f\x00\x03\x01", 0x038c # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 286| "\x00\x03\x97\x00\x03\x01", 0x0389 # 287| "\x00\x03\x99\x00\x03\x01", 0x038a # 288|-> "\x00\x03\x9f\x00\x03\x01", 0x038c # 289| "\x00\x03\xa5\x00\x03\x01", 0x038e # 290| "\x00\x03\xa9\x00\x03\x01", 0x038f Error: COMPILER_WARNING: [#def464] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:289:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 289 | "\x00\x03\xa5\x00\x03\x01", 0x038e # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 287| "\x00\x03\x99\x00\x03\x01", 0x038a # 288| "\x00\x03\x9f\x00\x03\x01", 0x038c # 289|-> "\x00\x03\xa5\x00\x03\x01", 0x038e # 290| "\x00\x03\xa9\x00\x03\x01", 0x038f # 291| "\x00\x03\xca\x00\x03\x01", 0x0390 Error: COMPILER_WARNING: [#def465] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:290:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 290 | "\x00\x03\xa9\x00\x03\x01", 0x038f # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 288| "\x00\x03\x9f\x00\x03\x01", 0x038c # 289| "\x00\x03\xa5\x00\x03\x01", 0x038e # 290|-> "\x00\x03\xa9\x00\x03\x01", 0x038f # 291| "\x00\x03\xca\x00\x03\x01", 0x0390 # 292| "\x00\x03\x99\x00\x03\x08", 0x03aa Error: COMPILER_WARNING: [#def466] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:291:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 291 | "\x00\x03\xca\x00\x03\x01", 0x0390 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 289| "\x00\x03\xa5\x00\x03\x01", 0x038e # 290| "\x00\x03\xa9\x00\x03\x01", 0x038f # 291|-> "\x00\x03\xca\x00\x03\x01", 0x0390 # 292| "\x00\x03\x99\x00\x03\x08", 0x03aa # 293| "\x00\x03\xa5\x00\x03\x08", 0x03ab Error: COMPILER_WARNING: [#def467] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:292:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 292 | "\x00\x03\x99\x00\x03\x08", 0x03aa # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 290| "\x00\x03\xa9\x00\x03\x01", 0x038f # 291| "\x00\x03\xca\x00\x03\x01", 0x0390 # 292|-> "\x00\x03\x99\x00\x03\x08", 0x03aa # 293| "\x00\x03\xa5\x00\x03\x08", 0x03ab # 294| "\x00\x03\xb1\x00\x03\x01", 0x03ac Error: COMPILER_WARNING: [#def468] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:293:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 293 | "\x00\x03\xa5\x00\x03\x08", 0x03ab # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 291| "\x00\x03\xca\x00\x03\x01", 0x0390 # 292| "\x00\x03\x99\x00\x03\x08", 0x03aa # 293|-> "\x00\x03\xa5\x00\x03\x08", 0x03ab # 294| "\x00\x03\xb1\x00\x03\x01", 0x03ac # 295| "\x00\x03\xb5\x00\x03\x01", 0x03ad Error: COMPILER_WARNING: [#def469] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:294:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 294 | "\x00\x03\xb1\x00\x03\x01", 0x03ac # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 292| "\x00\x03\x99\x00\x03\x08", 0x03aa # 293| "\x00\x03\xa5\x00\x03\x08", 0x03ab # 294|-> "\x00\x03\xb1\x00\x03\x01", 0x03ac # 295| "\x00\x03\xb5\x00\x03\x01", 0x03ad # 296| "\x00\x03\xb7\x00\x03\x01", 0x03ae Error: COMPILER_WARNING: [#def470] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:295:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 295 | "\x00\x03\xb5\x00\x03\x01", 0x03ad # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 293| "\x00\x03\xa5\x00\x03\x08", 0x03ab # 294| "\x00\x03\xb1\x00\x03\x01", 0x03ac # 295|-> "\x00\x03\xb5\x00\x03\x01", 0x03ad # 296| "\x00\x03\xb7\x00\x03\x01", 0x03ae # 297| "\x00\x03\xb9\x00\x03\x01", 0x03af Error: COMPILER_WARNING: [#def471] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:296:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 296 | "\x00\x03\xb7\x00\x03\x01", 0x03ae # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 294| "\x00\x03\xb1\x00\x03\x01", 0x03ac # 295| "\x00\x03\xb5\x00\x03\x01", 0x03ad # 296|-> "\x00\x03\xb7\x00\x03\x01", 0x03ae # 297| "\x00\x03\xb9\x00\x03\x01", 0x03af # 298| "\x00\x03\xcb\x00\x03\x01", 0x03b0 Error: COMPILER_WARNING: [#def472] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:297:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 297 | "\x00\x03\xb9\x00\x03\x01", 0x03af # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 295| "\x00\x03\xb5\x00\x03\x01", 0x03ad # 296| "\x00\x03\xb7\x00\x03\x01", 0x03ae # 297|-> "\x00\x03\xb9\x00\x03\x01", 0x03af # 298| "\x00\x03\xcb\x00\x03\x01", 0x03b0 # 299| "\x00\x03\xb9\x00\x03\x08", 0x03ca Error: COMPILER_WARNING: [#def473] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:298:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 298 | "\x00\x03\xcb\x00\x03\x01", 0x03b0 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 296| "\x00\x03\xb7\x00\x03\x01", 0x03ae # 297| "\x00\x03\xb9\x00\x03\x01", 0x03af # 298|-> "\x00\x03\xcb\x00\x03\x01", 0x03b0 # 299| "\x00\x03\xb9\x00\x03\x08", 0x03ca # 300| "\x00\x03\xc5\x00\x03\x08", 0x03cb Error: COMPILER_WARNING: [#def474] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:299:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 299 | "\x00\x03\xb9\x00\x03\x08", 0x03ca # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 297| "\x00\x03\xb9\x00\x03\x01", 0x03af # 298| "\x00\x03\xcb\x00\x03\x01", 0x03b0 # 299|-> "\x00\x03\xb9\x00\x03\x08", 0x03ca # 300| "\x00\x03\xc5\x00\x03\x08", 0x03cb # 301| "\x00\x03\xbf\x00\x03\x01", 0x03cc Error: COMPILER_WARNING: [#def475] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:300:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 300 | "\x00\x03\xc5\x00\x03\x08", 0x03cb # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 298| "\x00\x03\xcb\x00\x03\x01", 0x03b0 # 299| "\x00\x03\xb9\x00\x03\x08", 0x03ca # 300|-> "\x00\x03\xc5\x00\x03\x08", 0x03cb # 301| "\x00\x03\xbf\x00\x03\x01", 0x03cc # 302| "\x00\x03\xc5\x00\x03\x01", 0x03cd Error: COMPILER_WARNING: [#def476] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:301:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 301 | "\x00\x03\xbf\x00\x03\x01", 0x03cc # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 299| "\x00\x03\xb9\x00\x03\x08", 0x03ca # 300| "\x00\x03\xc5\x00\x03\x08", 0x03cb # 301|-> "\x00\x03\xbf\x00\x03\x01", 0x03cc # 302| "\x00\x03\xc5\x00\x03\x01", 0x03cd # 303| "\x00\x03\xc9\x00\x03\x01", 0x03ce Error: COMPILER_WARNING: [#def477] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:302:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 302 | "\x00\x03\xc5\x00\x03\x01", 0x03cd # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 300| "\x00\x03\xc5\x00\x03\x08", 0x03cb # 301| "\x00\x03\xbf\x00\x03\x01", 0x03cc # 302|-> "\x00\x03\xc5\x00\x03\x01", 0x03cd # 303| "\x00\x03\xc9\x00\x03\x01", 0x03ce # 304| "\x00\x03\xd2\x00\x03\x01", 0x03d3 Error: COMPILER_WARNING: [#def478] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:303:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 303 | "\x00\x03\xc9\x00\x03\x01", 0x03ce # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 301| "\x00\x03\xbf\x00\x03\x01", 0x03cc # 302| "\x00\x03\xc5\x00\x03\x01", 0x03cd # 303|-> "\x00\x03\xc9\x00\x03\x01", 0x03ce # 304| "\x00\x03\xd2\x00\x03\x01", 0x03d3 # 305| "\x00\x03\xd2\x00\x03\x08", 0x03d4 Error: COMPILER_WARNING: [#def479] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:304:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 304 | "\x00\x03\xd2\x00\x03\x01", 0x03d3 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 302| "\x00\x03\xc5\x00\x03\x01", 0x03cd # 303| "\x00\x03\xc9\x00\x03\x01", 0x03ce # 304|-> "\x00\x03\xd2\x00\x03\x01", 0x03d3 # 305| "\x00\x03\xd2\x00\x03\x08", 0x03d4 # 306| "\x00\x04\x15\x00\x03\x00", 0x0400 Error: COMPILER_WARNING: [#def480] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:305:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 305 | "\x00\x03\xd2\x00\x03\x08", 0x03d4 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 303| "\x00\x03\xc9\x00\x03\x01", 0x03ce # 304| "\x00\x03\xd2\x00\x03\x01", 0x03d3 # 305|-> "\x00\x03\xd2\x00\x03\x08", 0x03d4 # 306| "\x00\x04\x15\x00\x03\x00", 0x0400 # 307| "\x00\x04\x15\x00\x03\x08", 0x0401 Error: COMPILER_WARNING: [#def481] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:306:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 306 | "\x00\x04\x15\x00\x03\x00", 0x0400 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 304| "\x00\x03\xd2\x00\x03\x01", 0x03d3 # 305| "\x00\x03\xd2\x00\x03\x08", 0x03d4 # 306|-> "\x00\x04\x15\x00\x03\x00", 0x0400 # 307| "\x00\x04\x15\x00\x03\x08", 0x0401 # 308| "\x00\x04\x13\x00\x03\x01", 0x0403 Error: COMPILER_WARNING: [#def482] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:307:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 307 | "\x00\x04\x15\x00\x03\x08", 0x0401 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 305| "\x00\x03\xd2\x00\x03\x08", 0x03d4 # 306| "\x00\x04\x15\x00\x03\x00", 0x0400 # 307|-> "\x00\x04\x15\x00\x03\x08", 0x0401 # 308| "\x00\x04\x13\x00\x03\x01", 0x0403 # 309| "\x00\x04\x06\x00\x03\x08", 0x0407 Error: COMPILER_WARNING: [#def483] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:308:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 308 | "\x00\x04\x13\x00\x03\x01", 0x0403 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 306| "\x00\x04\x15\x00\x03\x00", 0x0400 # 307| "\x00\x04\x15\x00\x03\x08", 0x0401 # 308|-> "\x00\x04\x13\x00\x03\x01", 0x0403 # 309| "\x00\x04\x06\x00\x03\x08", 0x0407 # 310| "\x00\x04\x1a\x00\x03\x01", 0x040c Error: COMPILER_WARNING: [#def484] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:309:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 309 | "\x00\x04\x06\x00\x03\x08", 0x0407 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 307| "\x00\x04\x15\x00\x03\x08", 0x0401 # 308| "\x00\x04\x13\x00\x03\x01", 0x0403 # 309|-> "\x00\x04\x06\x00\x03\x08", 0x0407 # 310| "\x00\x04\x1a\x00\x03\x01", 0x040c # 311| "\x00\x04\x18\x00\x03\x00", 0x040d Error: COMPILER_WARNING: [#def485] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:310:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 310 | "\x00\x04\x1a\x00\x03\x01", 0x040c # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 308| "\x00\x04\x13\x00\x03\x01", 0x0403 # 309| "\x00\x04\x06\x00\x03\x08", 0x0407 # 310|-> "\x00\x04\x1a\x00\x03\x01", 0x040c # 311| "\x00\x04\x18\x00\x03\x00", 0x040d # 312| "\x00\x04\x23\x00\x03\x06", 0x040e Error: COMPILER_WARNING: [#def486] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:311:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 311 | "\x00\x04\x18\x00\x03\x00", 0x040d # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 309| "\x00\x04\x06\x00\x03\x08", 0x0407 # 310| "\x00\x04\x1a\x00\x03\x01", 0x040c # 311|-> "\x00\x04\x18\x00\x03\x00", 0x040d # 312| "\x00\x04\x23\x00\x03\x06", 0x040e # 313| "\x00\x04\x18\x00\x03\x06", 0x0419 Error: COMPILER_WARNING (CWE-909): [#def487] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:312:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 312 | "\x00\x04\x23\x00\x03\x06", 0x040e # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 310| "\x00\x04\x1a\x00\x03\x01", 0x040c # 311| "\x00\x04\x18\x00\x03\x00", 0x040d # 312|-> "\x00\x04\x23\x00\x03\x06", 0x040e # 313| "\x00\x04\x18\x00\x03\x06", 0x0419 # 314| "\x00\x04\x38\x00\x03\x06", 0x0439 Error: COMPILER_WARNING: [#def488] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:312:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 312 | "\x00\x04\x23\x00\x03\x06", 0x040e # | ^~~~~~~~~~~~~~~~~~~~~~~ # 310| "\x00\x04\x1a\x00\x03\x01", 0x040c # 311| "\x00\x04\x18\x00\x03\x00", 0x040d # 312|-> "\x00\x04\x23\x00\x03\x06", 0x040e # 313| "\x00\x04\x18\x00\x03\x06", 0x0419 # 314| "\x00\x04\x38\x00\x03\x06", 0x0439 Error: COMPILER_WARNING: [#def489] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:313:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 313 | "\x00\x04\x18\x00\x03\x06", 0x0419 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 311| "\x00\x04\x18\x00\x03\x00", 0x040d # 312| "\x00\x04\x23\x00\x03\x06", 0x040e # 313|-> "\x00\x04\x18\x00\x03\x06", 0x0419 # 314| "\x00\x04\x38\x00\x03\x06", 0x0439 # 315| "\x00\x04\x35\x00\x03\x00", 0x0450 Error: COMPILER_WARNING (CWE-909): [#def490] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:314:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 314 | "\x00\x04\x38\x00\x03\x06", 0x0439 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 312| "\x00\x04\x23\x00\x03\x06", 0x040e # 313| "\x00\x04\x18\x00\x03\x06", 0x0419 # 314|-> "\x00\x04\x38\x00\x03\x06", 0x0439 # 315| "\x00\x04\x35\x00\x03\x00", 0x0450 # 316| "\x00\x04\x35\x00\x03\x08", 0x0451 Error: COMPILER_WARNING: [#def491] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:314:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 314 | "\x00\x04\x38\x00\x03\x06", 0x0439 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 312| "\x00\x04\x23\x00\x03\x06", 0x040e # 313| "\x00\x04\x18\x00\x03\x06", 0x0419 # 314|-> "\x00\x04\x38\x00\x03\x06", 0x0439 # 315| "\x00\x04\x35\x00\x03\x00", 0x0450 # 316| "\x00\x04\x35\x00\x03\x08", 0x0451 Error: COMPILER_WARNING: [#def492] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:315:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 315 | "\x00\x04\x35\x00\x03\x00", 0x0450 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 313| "\x00\x04\x18\x00\x03\x06", 0x0419 # 314| "\x00\x04\x38\x00\x03\x06", 0x0439 # 315|-> "\x00\x04\x35\x00\x03\x00", 0x0450 # 316| "\x00\x04\x35\x00\x03\x08", 0x0451 # 317| "\x00\x04\x33\x00\x03\x01", 0x0453 Error: COMPILER_WARNING: [#def493] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:316:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 316 | "\x00\x04\x35\x00\x03\x08", 0x0451 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 314| "\x00\x04\x38\x00\x03\x06", 0x0439 # 315| "\x00\x04\x35\x00\x03\x00", 0x0450 # 316|-> "\x00\x04\x35\x00\x03\x08", 0x0451 # 317| "\x00\x04\x33\x00\x03\x01", 0x0453 # 318| "\x00\x04\x56\x00\x03\x08", 0x0457 Error: COMPILER_WARNING: [#def494] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:317:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 317 | "\x00\x04\x33\x00\x03\x01", 0x0453 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 315| "\x00\x04\x35\x00\x03\x00", 0x0450 # 316| "\x00\x04\x35\x00\x03\x08", 0x0451 # 317|-> "\x00\x04\x33\x00\x03\x01", 0x0453 # 318| "\x00\x04\x56\x00\x03\x08", 0x0457 # 319| "\x00\x04\x3a\x00\x03\x01", 0x045c Error: COMPILER_WARNING: [#def495] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:318:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 318 | "\x00\x04\x56\x00\x03\x08", 0x0457 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 316| "\x00\x04\x35\x00\x03\x08", 0x0451 # 317| "\x00\x04\x33\x00\x03\x01", 0x0453 # 318|-> "\x00\x04\x56\x00\x03\x08", 0x0457 # 319| "\x00\x04\x3a\x00\x03\x01", 0x045c # 320| "\x00\x04\x38\x00\x03\x00", 0x045d Error: COMPILER_WARNING: [#def496] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:319:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 319 | "\x00\x04\x3a\x00\x03\x01", 0x045c # | ^~~~~~~~~~~~~~~~~~~~~~~ # 317| "\x00\x04\x33\x00\x03\x01", 0x0453 # 318| "\x00\x04\x56\x00\x03\x08", 0x0457 # 319|-> "\x00\x04\x3a\x00\x03\x01", 0x045c # 320| "\x00\x04\x38\x00\x03\x00", 0x045d # 321| "\x00\x04\x43\x00\x03\x06", 0x045e Error: COMPILER_WARNING: [#def497] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:320:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 320 | "\x00\x04\x38\x00\x03\x00", 0x045d # | ^~~~~~~~~~~~~~~~~~~~~~~ # 318| "\x00\x04\x56\x00\x03\x08", 0x0457 # 319| "\x00\x04\x3a\x00\x03\x01", 0x045c # 320|-> "\x00\x04\x38\x00\x03\x00", 0x045d # 321| "\x00\x04\x43\x00\x03\x06", 0x045e # 322| "\x00\x04\x74\x00\x03\x0f", 0x0476 Error: COMPILER_WARNING: [#def498] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:321:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 321 | "\x00\x04\x43\x00\x03\x06", 0x045e # | ^~~~~~~~~~~~~~~~~~~~~~~ # 319| "\x00\x04\x3a\x00\x03\x01", 0x045c # 320| "\x00\x04\x38\x00\x03\x00", 0x045d # 321|-> "\x00\x04\x43\x00\x03\x06", 0x045e # 322| "\x00\x04\x74\x00\x03\x0f", 0x0476 # 323| "\x00\x04\x75\x00\x03\x0f", 0x0477 Error: COMPILER_WARNING: [#def499] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:322:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 322 | "\x00\x04\x74\x00\x03\x0f", 0x0476 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 320| "\x00\x04\x38\x00\x03\x00", 0x045d # 321| "\x00\x04\x43\x00\x03\x06", 0x045e # 322|-> "\x00\x04\x74\x00\x03\x0f", 0x0476 # 323| "\x00\x04\x75\x00\x03\x0f", 0x0477 # 324| "\x00\x04\x16\x00\x03\x06", 0x04c1 Error: COMPILER_WARNING: [#def500] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:323:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 323 | "\x00\x04\x75\x00\x03\x0f", 0x0477 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 321| "\x00\x04\x43\x00\x03\x06", 0x045e # 322| "\x00\x04\x74\x00\x03\x0f", 0x0476 # 323|-> "\x00\x04\x75\x00\x03\x0f", 0x0477 # 324| "\x00\x04\x16\x00\x03\x06", 0x04c1 # 325| "\x00\x04\x36\x00\x03\x06", 0x04c2 Error: COMPILER_WARNING: [#def501] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:324:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 324 | "\x00\x04\x16\x00\x03\x06", 0x04c1 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 322| "\x00\x04\x74\x00\x03\x0f", 0x0476 # 323| "\x00\x04\x75\x00\x03\x0f", 0x0477 # 324|-> "\x00\x04\x16\x00\x03\x06", 0x04c1 # 325| "\x00\x04\x36\x00\x03\x06", 0x04c2 # 326| "\x00\x04\x10\x00\x03\x06", 0x04d0 Error: COMPILER_WARNING: [#def502] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:325:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 325 | "\x00\x04\x36\x00\x03\x06", 0x04c2 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 323| "\x00\x04\x75\x00\x03\x0f", 0x0477 # 324| "\x00\x04\x16\x00\x03\x06", 0x04c1 # 325|-> "\x00\x04\x36\x00\x03\x06", 0x04c2 # 326| "\x00\x04\x10\x00\x03\x06", 0x04d0 # 327| "\x00\x04\x30\x00\x03\x06", 0x04d1 Error: COMPILER_WARNING: [#def503] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:326:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 326 | "\x00\x04\x10\x00\x03\x06", 0x04d0 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 324| "\x00\x04\x16\x00\x03\x06", 0x04c1 # 325| "\x00\x04\x36\x00\x03\x06", 0x04c2 # 326|-> "\x00\x04\x10\x00\x03\x06", 0x04d0 # 327| "\x00\x04\x30\x00\x03\x06", 0x04d1 # 328| "\x00\x04\x10\x00\x03\x08", 0x04d2 Error: COMPILER_WARNING: [#def504] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:327:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 327 | "\x00\x04\x30\x00\x03\x06", 0x04d1 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 325| "\x00\x04\x36\x00\x03\x06", 0x04c2 # 326| "\x00\x04\x10\x00\x03\x06", 0x04d0 # 327|-> "\x00\x04\x30\x00\x03\x06", 0x04d1 # 328| "\x00\x04\x10\x00\x03\x08", 0x04d2 # 329| "\x00\x04\x30\x00\x03\x08", 0x04d3 Error: COMPILER_WARNING: [#def505] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:328:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 328 | "\x00\x04\x10\x00\x03\x08", 0x04d2 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 326| "\x00\x04\x10\x00\x03\x06", 0x04d0 # 327| "\x00\x04\x30\x00\x03\x06", 0x04d1 # 328|-> "\x00\x04\x10\x00\x03\x08", 0x04d2 # 329| "\x00\x04\x30\x00\x03\x08", 0x04d3 # 330| "\x00\x04\x15\x00\x03\x06", 0x04d6 Error: COMPILER_WARNING: [#def506] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:329:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 329 | "\x00\x04\x30\x00\x03\x08", 0x04d3 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 327| "\x00\x04\x30\x00\x03\x06", 0x04d1 # 328| "\x00\x04\x10\x00\x03\x08", 0x04d2 # 329|-> "\x00\x04\x30\x00\x03\x08", 0x04d3 # 330| "\x00\x04\x15\x00\x03\x06", 0x04d6 # 331| "\x00\x04\x35\x00\x03\x06", 0x04d7 Error: COMPILER_WARNING: [#def507] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:330:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 330 | "\x00\x04\x15\x00\x03\x06", 0x04d6 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 328| "\x00\x04\x10\x00\x03\x08", 0x04d2 # 329| "\x00\x04\x30\x00\x03\x08", 0x04d3 # 330|-> "\x00\x04\x15\x00\x03\x06", 0x04d6 # 331| "\x00\x04\x35\x00\x03\x06", 0x04d7 # 332| "\x00\x04\xd8\x00\x03\x08", 0x04da Error: COMPILER_WARNING: [#def508] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:331:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 331 | "\x00\x04\x35\x00\x03\x06", 0x04d7 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 329| "\x00\x04\x30\x00\x03\x08", 0x04d3 # 330| "\x00\x04\x15\x00\x03\x06", 0x04d6 # 331|-> "\x00\x04\x35\x00\x03\x06", 0x04d7 # 332| "\x00\x04\xd8\x00\x03\x08", 0x04da # 333| "\x00\x04\xd9\x00\x03\x08", 0x04db Error: COMPILER_WARNING: [#def509] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:332:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 332 | "\x00\x04\xd8\x00\x03\x08", 0x04da # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 330| "\x00\x04\x15\x00\x03\x06", 0x04d6 # 331| "\x00\x04\x35\x00\x03\x06", 0x04d7 # 332|-> "\x00\x04\xd8\x00\x03\x08", 0x04da # 333| "\x00\x04\xd9\x00\x03\x08", 0x04db # 334| "\x00\x04\x16\x00\x03\x08", 0x04dc Error: COMPILER_WARNING: [#def510] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:333:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 333 | "\x00\x04\xd9\x00\x03\x08", 0x04db # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 331| "\x00\x04\x35\x00\x03\x06", 0x04d7 # 332| "\x00\x04\xd8\x00\x03\x08", 0x04da # 333|-> "\x00\x04\xd9\x00\x03\x08", 0x04db # 334| "\x00\x04\x16\x00\x03\x08", 0x04dc # 335| "\x00\x04\x36\x00\x03\x08", 0x04dd Error: COMPILER_WARNING: [#def511] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:334:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 334 | "\x00\x04\x16\x00\x03\x08", 0x04dc # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 332| "\x00\x04\xd8\x00\x03\x08", 0x04da # 333| "\x00\x04\xd9\x00\x03\x08", 0x04db # 334|-> "\x00\x04\x16\x00\x03\x08", 0x04dc # 335| "\x00\x04\x36\x00\x03\x08", 0x04dd # 336| "\x00\x04\x17\x00\x03\x08", 0x04de Error: COMPILER_WARNING: [#def512] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:335:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 335 | "\x00\x04\x36\x00\x03\x08", 0x04dd # | ^~~~~~~~~~~~~~~~~~~~~~~ # 333| "\x00\x04\xd9\x00\x03\x08", 0x04db # 334| "\x00\x04\x16\x00\x03\x08", 0x04dc # 335|-> "\x00\x04\x36\x00\x03\x08", 0x04dd # 336| "\x00\x04\x17\x00\x03\x08", 0x04de # 337| "\x00\x04\x37\x00\x03\x08", 0x04df Error: COMPILER_WARNING: [#def513] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:336:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 336 | "\x00\x04\x17\x00\x03\x08", 0x04de # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 334| "\x00\x04\x16\x00\x03\x08", 0x04dc # 335| "\x00\x04\x36\x00\x03\x08", 0x04dd # 336|-> "\x00\x04\x17\x00\x03\x08", 0x04de # 337| "\x00\x04\x37\x00\x03\x08", 0x04df # 338| "\x00\x04\x18\x00\x03\x04", 0x04e2 Error: COMPILER_WARNING: [#def514] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:337:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 337 | "\x00\x04\x37\x00\x03\x08", 0x04df # | ^~~~~~~~~~~~~~~~~~~~~~~ # 335| "\x00\x04\x36\x00\x03\x08", 0x04dd # 336| "\x00\x04\x17\x00\x03\x08", 0x04de # 337|-> "\x00\x04\x37\x00\x03\x08", 0x04df # 338| "\x00\x04\x18\x00\x03\x04", 0x04e2 # 339| "\x00\x04\x38\x00\x03\x04", 0x04e3 Error: COMPILER_WARNING (CWE-909): [#def515] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:339:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 339 | "\x00\x04\x38\x00\x03\x04", 0x04e3 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 337| "\x00\x04\x37\x00\x03\x08", 0x04df # 338| "\x00\x04\x18\x00\x03\x04", 0x04e2 # 339|-> "\x00\x04\x38\x00\x03\x04", 0x04e3 # 340| "\x00\x04\x18\x00\x03\x08", 0x04e4 # 341| "\x00\x04\x38\x00\x03\x08", 0x04e5 Error: COMPILER_WARNING: [#def516] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:339:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 339 | "\x00\x04\x38\x00\x03\x04", 0x04e3 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 337| "\x00\x04\x37\x00\x03\x08", 0x04df # 338| "\x00\x04\x18\x00\x03\x04", 0x04e2 # 339|-> "\x00\x04\x38\x00\x03\x04", 0x04e3 # 340| "\x00\x04\x18\x00\x03\x08", 0x04e4 # 341| "\x00\x04\x38\x00\x03\x08", 0x04e5 Error: COMPILER_WARNING: [#def517] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:340:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 340 | "\x00\x04\x18\x00\x03\x08", 0x04e4 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 338| "\x00\x04\x18\x00\x03\x04", 0x04e2 # 339| "\x00\x04\x38\x00\x03\x04", 0x04e3 # 340|-> "\x00\x04\x18\x00\x03\x08", 0x04e4 # 341| "\x00\x04\x38\x00\x03\x08", 0x04e5 # 342| "\x00\x04\x1e\x00\x03\x08", 0x04e6 Error: COMPILER_WARNING: [#def518] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:341:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 341 | "\x00\x04\x38\x00\x03\x08", 0x04e5 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 339| "\x00\x04\x38\x00\x03\x04", 0x04e3 # 340| "\x00\x04\x18\x00\x03\x08", 0x04e4 # 341|-> "\x00\x04\x38\x00\x03\x08", 0x04e5 # 342| "\x00\x04\x1e\x00\x03\x08", 0x04e6 # 343| "\x00\x04\x3e\x00\x03\x08", 0x04e7 Error: COMPILER_WARNING: [#def519] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:342:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 342 | "\x00\x04\x1e\x00\x03\x08", 0x04e6 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 340| "\x00\x04\x18\x00\x03\x08", 0x04e4 # 341| "\x00\x04\x38\x00\x03\x08", 0x04e5 # 342|-> "\x00\x04\x1e\x00\x03\x08", 0x04e6 # 343| "\x00\x04\x3e\x00\x03\x08", 0x04e7 # 344| "\x00\x04\xe8\x00\x03\x08", 0x04ea Error: COMPILER_WARNING: [#def520] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:343:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 343 | "\x00\x04\x3e\x00\x03\x08", 0x04e7 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 341| "\x00\x04\x38\x00\x03\x08", 0x04e5 # 342| "\x00\x04\x1e\x00\x03\x08", 0x04e6 # 343|-> "\x00\x04\x3e\x00\x03\x08", 0x04e7 # 344| "\x00\x04\xe8\x00\x03\x08", 0x04ea # 345| "\x00\x04\xe9\x00\x03\x08", 0x04eb Error: COMPILER_WARNING: [#def521] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:344:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 344 | "\x00\x04\xe8\x00\x03\x08", 0x04ea # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 342| "\x00\x04\x1e\x00\x03\x08", 0x04e6 # 343| "\x00\x04\x3e\x00\x03\x08", 0x04e7 # 344|-> "\x00\x04\xe8\x00\x03\x08", 0x04ea # 345| "\x00\x04\xe9\x00\x03\x08", 0x04eb # 346| "\x00\x04\x2d\x00\x03\x08", 0x04ec Error: COMPILER_WARNING: [#def522] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:345:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 345 | "\x00\x04\xe9\x00\x03\x08", 0x04eb # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 343| "\x00\x04\x3e\x00\x03\x08", 0x04e7 # 344| "\x00\x04\xe8\x00\x03\x08", 0x04ea # 345|-> "\x00\x04\xe9\x00\x03\x08", 0x04eb # 346| "\x00\x04\x2d\x00\x03\x08", 0x04ec # 347| "\x00\x04\x4d\x00\x03\x08", 0x04ed Error: COMPILER_WARNING: [#def523] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:346:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 346 | "\x00\x04\x2d\x00\x03\x08", 0x04ec # | ^~~~~~~~~~~~~~~~~~~~~~~ # 344| "\x00\x04\xe8\x00\x03\x08", 0x04ea # 345| "\x00\x04\xe9\x00\x03\x08", 0x04eb # 346|-> "\x00\x04\x2d\x00\x03\x08", 0x04ec # 347| "\x00\x04\x4d\x00\x03\x08", 0x04ed # 348| "\x00\x04\x23\x00\x03\x04", 0x04ee Error: COMPILER_WARNING: [#def524] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:347:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 347 | "\x00\x04\x4d\x00\x03\x08", 0x04ed # | ^~~~~~~~~~~~~~~~~~~~~~~ # 345| "\x00\x04\xe9\x00\x03\x08", 0x04eb # 346| "\x00\x04\x2d\x00\x03\x08", 0x04ec # 347|-> "\x00\x04\x4d\x00\x03\x08", 0x04ed # 348| "\x00\x04\x23\x00\x03\x04", 0x04ee # 349| "\x00\x04\x43\x00\x03\x04", 0x04ef Error: COMPILER_WARNING: [#def525] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:348:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 348 | "\x00\x04\x23\x00\x03\x04", 0x04ee # | ^~~~~~~~~~~~~~~~~~~~~~~ # 346| "\x00\x04\x2d\x00\x03\x08", 0x04ec # 347| "\x00\x04\x4d\x00\x03\x08", 0x04ed # 348|-> "\x00\x04\x23\x00\x03\x04", 0x04ee # 349| "\x00\x04\x43\x00\x03\x04", 0x04ef # 350| "\x00\x04\x23\x00\x03\x08", 0x04f0 Error: COMPILER_WARNING: [#def526] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:349:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 349 | "\x00\x04\x43\x00\x03\x04", 0x04ef # | ^~~~~~~~~~~~~~~~~~~~~~~ # 347| "\x00\x04\x4d\x00\x03\x08", 0x04ed # 348| "\x00\x04\x23\x00\x03\x04", 0x04ee # 349|-> "\x00\x04\x43\x00\x03\x04", 0x04ef # 350| "\x00\x04\x23\x00\x03\x08", 0x04f0 # 351| "\x00\x04\x43\x00\x03\x08", 0x04f1 Error: COMPILER_WARNING: [#def527] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:350:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 350 | "\x00\x04\x23\x00\x03\x08", 0x04f0 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 348| "\x00\x04\x23\x00\x03\x04", 0x04ee # 349| "\x00\x04\x43\x00\x03\x04", 0x04ef # 350|-> "\x00\x04\x23\x00\x03\x08", 0x04f0 # 351| "\x00\x04\x43\x00\x03\x08", 0x04f1 # 352| "\x00\x04\x23\x00\x03\x0b", 0x04f2 Error: COMPILER_WARNING: [#def528] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:351:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 351 | "\x00\x04\x43\x00\x03\x08", 0x04f1 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 349| "\x00\x04\x43\x00\x03\x04", 0x04ef # 350| "\x00\x04\x23\x00\x03\x08", 0x04f0 # 351|-> "\x00\x04\x43\x00\x03\x08", 0x04f1 # 352| "\x00\x04\x23\x00\x03\x0b", 0x04f2 # 353| "\x00\x04\x43\x00\x03\x0b", 0x04f3 Error: COMPILER_WARNING (CWE-909): [#def529] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:353:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 353 | "\x00\x04\x43\x00\x03\x0b", 0x04f3 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 351| "\x00\x04\x43\x00\x03\x08", 0x04f1 # 352| "\x00\x04\x23\x00\x03\x0b", 0x04f2 # 353|-> "\x00\x04\x43\x00\x03\x0b", 0x04f3 # 354| "\x00\x04\x27\x00\x03\x08", 0x04f4 # 355| "\x00\x04\x47\x00\x03\x08", 0x04f5 Error: COMPILER_WARNING: [#def530] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:353:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 353 | "\x00\x04\x43\x00\x03\x0b", 0x04f3 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 351| "\x00\x04\x43\x00\x03\x08", 0x04f1 # 352| "\x00\x04\x23\x00\x03\x0b", 0x04f2 # 353|-> "\x00\x04\x43\x00\x03\x0b", 0x04f3 # 354| "\x00\x04\x27\x00\x03\x08", 0x04f4 # 355| "\x00\x04\x47\x00\x03\x08", 0x04f5 Error: COMPILER_WARNING: [#def531] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:354:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 354 | "\x00\x04\x27\x00\x03\x08", 0x04f4 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 352| "\x00\x04\x23\x00\x03\x0b", 0x04f2 # 353| "\x00\x04\x43\x00\x03\x0b", 0x04f3 # 354|-> "\x00\x04\x27\x00\x03\x08", 0x04f4 # 355| "\x00\x04\x47\x00\x03\x08", 0x04f5 # 356| "\x00\x04\x2b\x00\x03\x08", 0x04f8 Error: COMPILER_WARNING: [#def532] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:355:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 355 | "\x00\x04\x47\x00\x03\x08", 0x04f5 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 353| "\x00\x04\x43\x00\x03\x0b", 0x04f3 # 354| "\x00\x04\x27\x00\x03\x08", 0x04f4 # 355|-> "\x00\x04\x47\x00\x03\x08", 0x04f5 # 356| "\x00\x04\x2b\x00\x03\x08", 0x04f8 # 357| "\x00\x04\x4b\x00\x03\x08", 0x04f9 Error: COMPILER_WARNING: [#def533] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:356:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 356 | "\x00\x04\x2b\x00\x03\x08", 0x04f8 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 354| "\x00\x04\x27\x00\x03\x08", 0x04f4 # 355| "\x00\x04\x47\x00\x03\x08", 0x04f5 # 356|-> "\x00\x04\x2b\x00\x03\x08", 0x04f8 # 357| "\x00\x04\x4b\x00\x03\x08", 0x04f9 # 358| "\x00\x06\x27\x00\x06\x53", 0x0622 Error: COMPILER_WARNING: [#def534] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:357:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 357 | "\x00\x04\x4b\x00\x03\x08", 0x04f9 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 355| "\x00\x04\x47\x00\x03\x08", 0x04f5 # 356| "\x00\x04\x2b\x00\x03\x08", 0x04f8 # 357|-> "\x00\x04\x4b\x00\x03\x08", 0x04f9 # 358| "\x00\x06\x27\x00\x06\x53", 0x0622 # 359| "\x00\x06\x27\x00\x06\x54", 0x0623 Error: COMPILER_WARNING (CWE-909): [#def535] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:359:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 359 | "\x00\x06\x27\x00\x06\x54", 0x0623 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 357| "\x00\x04\x4b\x00\x03\x08", 0x04f9 # 358| "\x00\x06\x27\x00\x06\x53", 0x0622 # 359|-> "\x00\x06\x27\x00\x06\x54", 0x0623 # 360| "\x00\x06\x48\x00\x06\x54", 0x0624 # 361| "\x00\x06\x27\x00\x06\x55", 0x0625 Error: COMPILER_WARNING: [#def536] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:359:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 359 | "\x00\x06\x27\x00\x06\x54", 0x0623 # | ^~~~~~~~~~~~~~~~~~~~ # 357| "\x00\x04\x4b\x00\x03\x08", 0x04f9 # 358| "\x00\x06\x27\x00\x06\x53", 0x0622 # 359|-> "\x00\x06\x27\x00\x06\x54", 0x0623 # 360| "\x00\x06\x48\x00\x06\x54", 0x0624 # 361| "\x00\x06\x27\x00\x06\x55", 0x0625 Error: COMPILER_WARNING: [#def537] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:360:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 360 | "\x00\x06\x48\x00\x06\x54", 0x0624 # | ^~~~~~~~~~~~~~~~~~~~ # 358| "\x00\x06\x27\x00\x06\x53", 0x0622 # 359| "\x00\x06\x27\x00\x06\x54", 0x0623 # 360|-> "\x00\x06\x48\x00\x06\x54", 0x0624 # 361| "\x00\x06\x27\x00\x06\x55", 0x0625 # 362| "\x00\x06\x4a\x00\x06\x54", 0x0626 Error: COMPILER_WARNING (CWE-909): [#def538] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:362:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 362 | "\x00\x06\x4a\x00\x06\x54", 0x0626 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 360| "\x00\x06\x48\x00\x06\x54", 0x0624 # 361| "\x00\x06\x27\x00\x06\x55", 0x0625 # 362|-> "\x00\x06\x4a\x00\x06\x54", 0x0626 # 363| "\x00\x06\xd5\x00\x06\x54", 0x06c0 # 364| "\x00\x06\xc1\x00\x06\x54", 0x06c2 Error: COMPILER_WARNING: [#def539] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:362:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 362 | "\x00\x06\x4a\x00\x06\x54", 0x0626 # | ^~~~~~~~~~~~~~~~~~~~ # 360| "\x00\x06\x48\x00\x06\x54", 0x0624 # 361| "\x00\x06\x27\x00\x06\x55", 0x0625 # 362|-> "\x00\x06\x4a\x00\x06\x54", 0x0626 # 363| "\x00\x06\xd5\x00\x06\x54", 0x06c0 # 364| "\x00\x06\xc1\x00\x06\x54", 0x06c2 Error: COMPILER_WARNING (CWE-909): [#def540] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:363:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 363 | "\x00\x06\xd5\x00\x06\x54", 0x06c0 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 361| "\x00\x06\x27\x00\x06\x55", 0x0625 # 362| "\x00\x06\x4a\x00\x06\x54", 0x0626 # 363|-> "\x00\x06\xd5\x00\x06\x54", 0x06c0 # 364| "\x00\x06\xc1\x00\x06\x54", 0x06c2 # 365| "\x00\x06\xd2\x00\x06\x54", 0x06d3 Error: COMPILER_WARNING (CWE-909): [#def541] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:364:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 364 | "\x00\x06\xc1\x00\x06\x54", 0x06c2 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 362| "\x00\x06\x4a\x00\x06\x54", 0x0626 # 363| "\x00\x06\xd5\x00\x06\x54", 0x06c0 # 364|-> "\x00\x06\xc1\x00\x06\x54", 0x06c2 # 365| "\x00\x06\xd2\x00\x06\x54", 0x06d3 # 366| "\x00\x09\x28\x00\x09\x3c", 0x0929 Error: COMPILER_WARNING (CWE-909): [#def542] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:365:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 365 | "\x00\x06\xd2\x00\x06\x54", 0x06d3 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 363| "\x00\x06\xd5\x00\x06\x54", 0x06c0 # 364| "\x00\x06\xc1\x00\x06\x54", 0x06c2 # 365|-> "\x00\x06\xd2\x00\x06\x54", 0x06d3 # 366| "\x00\x09\x28\x00\x09\x3c", 0x0929 # 367| "\x00\x09\x30\x00\x09\x3c", 0x0931 Error: COMPILER_WARNING (CWE-909): [#def543] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:366:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 366 | "\x00\x09\x28\x00\x09\x3c", 0x0929 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 364| "\x00\x06\xc1\x00\x06\x54", 0x06c2 # 365| "\x00\x06\xd2\x00\x06\x54", 0x06d3 # 366|-> "\x00\x09\x28\x00\x09\x3c", 0x0929 # 367| "\x00\x09\x30\x00\x09\x3c", 0x0931 # 368| "\x00\x09\x33\x00\x09\x3c", 0x0934 Error: COMPILER_WARNING: [#def544] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:366:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 366 | "\x00\x09\x28\x00\x09\x3c", 0x0929 # | ^~~~~~~~~~~~~~~~~~~~ # 364| "\x00\x06\xc1\x00\x06\x54", 0x06c2 # 365| "\x00\x06\xd2\x00\x06\x54", 0x06d3 # 366|-> "\x00\x09\x28\x00\x09\x3c", 0x0929 # 367| "\x00\x09\x30\x00\x09\x3c", 0x0931 # 368| "\x00\x09\x33\x00\x09\x3c", 0x0934 Error: COMPILER_WARNING: [#def545] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:367:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 367 | "\x00\x09\x30\x00\x09\x3c", 0x0931 # | ^~~~~~~~~~~~~~~~~~~~ # 365| "\x00\x06\xd2\x00\x06\x54", 0x06d3 # 366| "\x00\x09\x28\x00\x09\x3c", 0x0929 # 367|-> "\x00\x09\x30\x00\x09\x3c", 0x0931 # 368| "\x00\x09\x33\x00\x09\x3c", 0x0934 # 369| "\x00\x09\xc7\x00\x09\xbe", 0x09cb Error: COMPILER_WARNING: [#def546] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:368:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 368 | "\x00\x09\x33\x00\x09\x3c", 0x0934 # | ^~~~~~~~~~~~~~~~~~~~ # 366| "\x00\x09\x28\x00\x09\x3c", 0x0929 # 367| "\x00\x09\x30\x00\x09\x3c", 0x0931 # 368|-> "\x00\x09\x33\x00\x09\x3c", 0x0934 # 369| "\x00\x09\xc7\x00\x09\xbe", 0x09cb # 370| "\x00\x09\xc7\x00\x09\xd7", 0x09cc Error: COMPILER_WARNING: [#def547] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:369:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 369 | "\x00\x09\xc7\x00\x09\xbe", 0x09cb # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 367| "\x00\x09\x30\x00\x09\x3c", 0x0931 # 368| "\x00\x09\x33\x00\x09\x3c", 0x0934 # 369|-> "\x00\x09\xc7\x00\x09\xbe", 0x09cb # 370| "\x00\x09\xc7\x00\x09\xd7", 0x09cc # 371| "\x00\x0b\x47\x00\x0b\x56", 0x0b48 Error: COMPILER_WARNING: [#def548] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:370:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 370 | "\x00\x09\xc7\x00\x09\xd7", 0x09cc # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 368| "\x00\x09\x33\x00\x09\x3c", 0x0934 # 369| "\x00\x09\xc7\x00\x09\xbe", 0x09cb # 370|-> "\x00\x09\xc7\x00\x09\xd7", 0x09cc # 371| "\x00\x0b\x47\x00\x0b\x56", 0x0b48 # 372| "\x00\x0b\x47\x00\x0b\x3e", 0x0b4b Error: COMPILER_WARNING (CWE-909): [#def549] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:372:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 372 | "\x00\x0b\x47\x00\x0b\x3e", 0x0b4b # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 370| "\x00\x09\xc7\x00\x09\xd7", 0x09cc # 371| "\x00\x0b\x47\x00\x0b\x56", 0x0b48 # 372|-> "\x00\x0b\x47\x00\x0b\x3e", 0x0b4b # 373| "\x00\x0b\x47\x00\x0b\x57", 0x0b4c # 374| "\x00\x0b\x92\x00\x0b\xd7", 0x0b94 Error: COMPILER_WARNING (CWE-909): [#def550] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:373:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 373 | "\x00\x0b\x47\x00\x0b\x57", 0x0b4c # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 371| "\x00\x0b\x47\x00\x0b\x56", 0x0b48 # 372| "\x00\x0b\x47\x00\x0b\x3e", 0x0b4b # 373|-> "\x00\x0b\x47\x00\x0b\x57", 0x0b4c # 374| "\x00\x0b\x92\x00\x0b\xd7", 0x0b94 # 375| "\x00\x0b\xc6\x00\x0b\xbe", 0x0bca Error: COMPILER_WARNING: [#def551] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:373:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 373 | "\x00\x0b\x47\x00\x0b\x57", 0x0b4c # | ^~~~~~~~~~~~~~~~~~~~ # 371| "\x00\x0b\x47\x00\x0b\x56", 0x0b48 # 372| "\x00\x0b\x47\x00\x0b\x3e", 0x0b4b # 373|-> "\x00\x0b\x47\x00\x0b\x57", 0x0b4c # 374| "\x00\x0b\x92\x00\x0b\xd7", 0x0b94 # 375| "\x00\x0b\xc6\x00\x0b\xbe", 0x0bca Error: COMPILER_WARNING (CWE-909): [#def552] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:374:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 374 | "\x00\x0b\x92\x00\x0b\xd7", 0x0b94 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 372| "\x00\x0b\x47\x00\x0b\x3e", 0x0b4b # 373| "\x00\x0b\x47\x00\x0b\x57", 0x0b4c # 374|-> "\x00\x0b\x92\x00\x0b\xd7", 0x0b94 # 375| "\x00\x0b\xc6\x00\x0b\xbe", 0x0bca # 376| "\x00\x0b\xc7\x00\x0b\xbe", 0x0bcb Error: COMPILER_WARNING (CWE-909): [#def553] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:375:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 375 | "\x00\x0b\xc6\x00\x0b\xbe", 0x0bca # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 373| "\x00\x0b\x47\x00\x0b\x57", 0x0b4c # 374| "\x00\x0b\x92\x00\x0b\xd7", 0x0b94 # 375|-> "\x00\x0b\xc6\x00\x0b\xbe", 0x0bca # 376| "\x00\x0b\xc7\x00\x0b\xbe", 0x0bcb # 377| "\x00\x0b\xc6\x00\x0b\xd7", 0x0bcc Error: COMPILER_WARNING (CWE-909): [#def554] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:376:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 376 | "\x00\x0b\xc7\x00\x0b\xbe", 0x0bcb # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 374| "\x00\x0b\x92\x00\x0b\xd7", 0x0b94 # 375| "\x00\x0b\xc6\x00\x0b\xbe", 0x0bca # 376|-> "\x00\x0b\xc7\x00\x0b\xbe", 0x0bcb # 377| "\x00\x0b\xc6\x00\x0b\xd7", 0x0bcc # 378| "\x00\x0c\x46\x00\x0c\x56", 0x0c48 Error: COMPILER_WARNING (CWE-909): [#def555] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:377:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 377 | "\x00\x0b\xc6\x00\x0b\xd7", 0x0bcc # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 375| "\x00\x0b\xc6\x00\x0b\xbe", 0x0bca # 376| "\x00\x0b\xc7\x00\x0b\xbe", 0x0bcb # 377|-> "\x00\x0b\xc6\x00\x0b\xd7", 0x0bcc # 378| "\x00\x0c\x46\x00\x0c\x56", 0x0c48 # 379| "\x00\x0c\xbf\x00\x0c\xd5", 0x0cc0 Error: COMPILER_WARNING (CWE-909): [#def556] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:378:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 378 | "\x00\x0c\x46\x00\x0c\x56", 0x0c48 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 376| "\x00\x0b\xc7\x00\x0b\xbe", 0x0bcb # 377| "\x00\x0b\xc6\x00\x0b\xd7", 0x0bcc # 378|-> "\x00\x0c\x46\x00\x0c\x56", 0x0c48 # 379| "\x00\x0c\xbf\x00\x0c\xd5", 0x0cc0 # 380| "\x00\x0c\xc6\x00\x0c\xd5", 0x0cc7 Error: COMPILER_WARNING: [#def557] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:378:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 378 | "\x00\x0c\x46\x00\x0c\x56", 0x0c48 # | ^~~~~~~~~~~~~~~~~~~~ # 376| "\x00\x0b\xc7\x00\x0b\xbe", 0x0bcb # 377| "\x00\x0b\xc6\x00\x0b\xd7", 0x0bcc # 378|-> "\x00\x0c\x46\x00\x0c\x56", 0x0c48 # 379| "\x00\x0c\xbf\x00\x0c\xd5", 0x0cc0 # 380| "\x00\x0c\xc6\x00\x0c\xd5", 0x0cc7 Error: COMPILER_WARNING (CWE-909): [#def558] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:379:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 379 | "\x00\x0c\xbf\x00\x0c\xd5", 0x0cc0 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 377| "\x00\x0b\xc6\x00\x0b\xd7", 0x0bcc # 378| "\x00\x0c\x46\x00\x0c\x56", 0x0c48 # 379|-> "\x00\x0c\xbf\x00\x0c\xd5", 0x0cc0 # 380| "\x00\x0c\xc6\x00\x0c\xd5", 0x0cc7 # 381| "\x00\x0c\xc6\x00\x0c\xd6", 0x0cc8 Error: COMPILER_WARNING (CWE-909): [#def559] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:380:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 380 | "\x00\x0c\xc6\x00\x0c\xd5", 0x0cc7 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 378| "\x00\x0c\x46\x00\x0c\x56", 0x0c48 # 379| "\x00\x0c\xbf\x00\x0c\xd5", 0x0cc0 # 380|-> "\x00\x0c\xc6\x00\x0c\xd5", 0x0cc7 # 381| "\x00\x0c\xc6\x00\x0c\xd6", 0x0cc8 # 382| "\x00\x0c\xc6\x00\x0c\xc2", 0x0cca Error: COMPILER_WARNING (CWE-909): [#def560] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:381:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 381 | "\x00\x0c\xc6\x00\x0c\xd6", 0x0cc8 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 379| "\x00\x0c\xbf\x00\x0c\xd5", 0x0cc0 # 380| "\x00\x0c\xc6\x00\x0c\xd5", 0x0cc7 # 381|-> "\x00\x0c\xc6\x00\x0c\xd6", 0x0cc8 # 382| "\x00\x0c\xc6\x00\x0c\xc2", 0x0cca # 383| "\x00\x0c\xca\x00\x0c\xd5", 0x0ccb Error: COMPILER_WARNING (CWE-909): [#def561] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:384:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 384 | "\x00\x0d\x46\x00\x0d\x3e", 0x0d4a # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 382| "\x00\x0c\xc6\x00\x0c\xc2", 0x0cca # 383| "\x00\x0c\xca\x00\x0c\xd5", 0x0ccb # 384|-> "\x00\x0d\x46\x00\x0d\x3e", 0x0d4a # 385| "\x00\x0d\x47\x00\x0d\x3e", 0x0d4b # 386| "\x00\x0d\x46\x00\x0d\x57", 0x0d4c Error: COMPILER_WARNING: [#def562] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:384:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 384 | "\x00\x0d\x46\x00\x0d\x3e", 0x0d4a # | ^~~~~~~~~~~~~~~~~~~~ # 382| "\x00\x0c\xc6\x00\x0c\xc2", 0x0cca # 383| "\x00\x0c\xca\x00\x0c\xd5", 0x0ccb # 384|-> "\x00\x0d\x46\x00\x0d\x3e", 0x0d4a # 385| "\x00\x0d\x47\x00\x0d\x3e", 0x0d4b # 386| "\x00\x0d\x46\x00\x0d\x57", 0x0d4c Error: COMPILER_WARNING: [#def563] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:385:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 385 | "\x00\x0d\x47\x00\x0d\x3e", 0x0d4b # | ^~~~~~~~~~~~~~~~~~~~ # 383| "\x00\x0c\xca\x00\x0c\xd5", 0x0ccb # 384| "\x00\x0d\x46\x00\x0d\x3e", 0x0d4a # 385|-> "\x00\x0d\x47\x00\x0d\x3e", 0x0d4b # 386| "\x00\x0d\x46\x00\x0d\x57", 0x0d4c # 387| "\x00\x0d\xd9\x00\x0d\xca", 0x0dda Error: COMPILER_WARNING: [#def564] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:386:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 386 | "\x00\x0d\x46\x00\x0d\x57", 0x0d4c # | ^~~~~~~~~~~~~~~~~~~~ # 384| "\x00\x0d\x46\x00\x0d\x3e", 0x0d4a # 385| "\x00\x0d\x47\x00\x0d\x3e", 0x0d4b # 386|-> "\x00\x0d\x46\x00\x0d\x57", 0x0d4c # 387| "\x00\x0d\xd9\x00\x0d\xca", 0x0dda # 388| "\x00\x0d\xd9\x00\x0d\xcf", 0x0ddc Error: COMPILER_WARNING (CWE-909): [#def565] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:388:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 388 | "\x00\x0d\xd9\x00\x0d\xcf", 0x0ddc # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 386| "\x00\x0d\x46\x00\x0d\x57", 0x0d4c # 387| "\x00\x0d\xd9\x00\x0d\xca", 0x0dda # 388|-> "\x00\x0d\xd9\x00\x0d\xcf", 0x0ddc # 389| "\x00\x0d\xdc\x00\x0d\xca", 0x0ddd # 390| "\x00\x0d\xd9\x00\x0d\xdf", 0x0dde Error: COMPILER_WARNING: [#def566] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:388:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 388 | "\x00\x0d\xd9\x00\x0d\xcf", 0x0ddc # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 386| "\x00\x0d\x46\x00\x0d\x57", 0x0d4c # 387| "\x00\x0d\xd9\x00\x0d\xca", 0x0dda # 388|-> "\x00\x0d\xd9\x00\x0d\xcf", 0x0ddc # 389| "\x00\x0d\xdc\x00\x0d\xca", 0x0ddd # 390| "\x00\x0d\xd9\x00\x0d\xdf", 0x0dde Error: COMPILER_WARNING (CWE-909): [#def567] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:390:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 390 | "\x00\x0d\xd9\x00\x0d\xdf", 0x0dde # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 388| "\x00\x0d\xd9\x00\x0d\xcf", 0x0ddc # 389| "\x00\x0d\xdc\x00\x0d\xca", 0x0ddd # 390|-> "\x00\x0d\xd9\x00\x0d\xdf", 0x0dde # 391| "\x00\x10\x25\x00\x10\x2e", 0x1026 # 392| "\x00\x1b\x05\x00\x1b\x35", 0x1b06 Error: COMPILER_WARNING: [#def568] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:390:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 390 | "\x00\x0d\xd9\x00\x0d\xdf", 0x0dde # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 388| "\x00\x0d\xd9\x00\x0d\xcf", 0x0ddc # 389| "\x00\x0d\xdc\x00\x0d\xca", 0x0ddd # 390|-> "\x00\x0d\xd9\x00\x0d\xdf", 0x0dde # 391| "\x00\x10\x25\x00\x10\x2e", 0x1026 # 392| "\x00\x1b\x05\x00\x1b\x35", 0x1b06 Error: COMPILER_WARNING (CWE-909): [#def569] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:392:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 392 | "\x00\x1b\x05\x00\x1b\x35", 0x1b06 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 390| "\x00\x0d\xd9\x00\x0d\xdf", 0x0dde # 391| "\x00\x10\x25\x00\x10\x2e", 0x1026 # 392|-> "\x00\x1b\x05\x00\x1b\x35", 0x1b06 # 393| "\x00\x1b\x07\x00\x1b\x35", 0x1b08 # 394| "\x00\x1b\x09\x00\x1b\x35", 0x1b0a Error: COMPILER_WARNING: [#def570] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:392:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 392 | "\x00\x1b\x05\x00\x1b\x35", 0x1b06 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 390| "\x00\x0d\xd9\x00\x0d\xdf", 0x0dde # 391| "\x00\x10\x25\x00\x10\x2e", 0x1026 # 392|-> "\x00\x1b\x05\x00\x1b\x35", 0x1b06 # 393| "\x00\x1b\x07\x00\x1b\x35", 0x1b08 # 394| "\x00\x1b\x09\x00\x1b\x35", 0x1b0a Error: COMPILER_WARNING (CWE-909): [#def571] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:393:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 393 | "\x00\x1b\x07\x00\x1b\x35", 0x1b08 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 391| "\x00\x10\x25\x00\x10\x2e", 0x1026 # 392| "\x00\x1b\x05\x00\x1b\x35", 0x1b06 # 393|-> "\x00\x1b\x07\x00\x1b\x35", 0x1b08 # 394| "\x00\x1b\x09\x00\x1b\x35", 0x1b0a # 395| "\x00\x1b\x0b\x00\x1b\x35", 0x1b0c Error: COMPILER_WARNING: [#def572] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:393:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 393 | "\x00\x1b\x07\x00\x1b\x35", 0x1b08 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 391| "\x00\x10\x25\x00\x10\x2e", 0x1026 # 392| "\x00\x1b\x05\x00\x1b\x35", 0x1b06 # 393|-> "\x00\x1b\x07\x00\x1b\x35", 0x1b08 # 394| "\x00\x1b\x09\x00\x1b\x35", 0x1b0a # 395| "\x00\x1b\x0b\x00\x1b\x35", 0x1b0c Error: COMPILER_WARNING (CWE-909): [#def573] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:394:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 394 | "\x00\x1b\x09\x00\x1b\x35", 0x1b0a # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 392| "\x00\x1b\x05\x00\x1b\x35", 0x1b06 # 393| "\x00\x1b\x07\x00\x1b\x35", 0x1b08 # 394|-> "\x00\x1b\x09\x00\x1b\x35", 0x1b0a # 395| "\x00\x1b\x0b\x00\x1b\x35", 0x1b0c # 396| "\x00\x1b\x0d\x00\x1b\x35", 0x1b0e Error: COMPILER_WARNING: [#def574] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:394:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 394 | "\x00\x1b\x09\x00\x1b\x35", 0x1b0a # | ^~~~~~~~~~~~~~~~~~~~~~~ # 392| "\x00\x1b\x05\x00\x1b\x35", 0x1b06 # 393| "\x00\x1b\x07\x00\x1b\x35", 0x1b08 # 394|-> "\x00\x1b\x09\x00\x1b\x35", 0x1b0a # 395| "\x00\x1b\x0b\x00\x1b\x35", 0x1b0c # 396| "\x00\x1b\x0d\x00\x1b\x35", 0x1b0e Error: COMPILER_WARNING: [#def575] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:395:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 395 | "\x00\x1b\x0b\x00\x1b\x35", 0x1b0c # | ^~~~~~~~~~~~~~~~~~~~~~~ # 393| "\x00\x1b\x07\x00\x1b\x35", 0x1b08 # 394| "\x00\x1b\x09\x00\x1b\x35", 0x1b0a # 395|-> "\x00\x1b\x0b\x00\x1b\x35", 0x1b0c # 396| "\x00\x1b\x0d\x00\x1b\x35", 0x1b0e # 397| "\x00\x1b\x11\x00\x1b\x35", 0x1b12 Error: COMPILER_WARNING (CWE-909): [#def576] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:396:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 396 | "\x00\x1b\x0d\x00\x1b\x35", 0x1b0e # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 394| "\x00\x1b\x09\x00\x1b\x35", 0x1b0a # 395| "\x00\x1b\x0b\x00\x1b\x35", 0x1b0c # 396|-> "\x00\x1b\x0d\x00\x1b\x35", 0x1b0e # 397| "\x00\x1b\x11\x00\x1b\x35", 0x1b12 # 398| "\x00\x1b\x3a\x00\x1b\x35", 0x1b3b Error: COMPILER_WARNING: [#def577] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:396:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 396 | "\x00\x1b\x0d\x00\x1b\x35", 0x1b0e # | ^~~~~~~~~~~~~~~~~~~~~~~ # 394| "\x00\x1b\x09\x00\x1b\x35", 0x1b0a # 395| "\x00\x1b\x0b\x00\x1b\x35", 0x1b0c # 396|-> "\x00\x1b\x0d\x00\x1b\x35", 0x1b0e # 397| "\x00\x1b\x11\x00\x1b\x35", 0x1b12 # 398| "\x00\x1b\x3a\x00\x1b\x35", 0x1b3b Error: COMPILER_WARNING: [#def578] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:397:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 397 | "\x00\x1b\x11\x00\x1b\x35", 0x1b12 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 395| "\x00\x1b\x0b\x00\x1b\x35", 0x1b0c # 396| "\x00\x1b\x0d\x00\x1b\x35", 0x1b0e # 397|-> "\x00\x1b\x11\x00\x1b\x35", 0x1b12 # 398| "\x00\x1b\x3a\x00\x1b\x35", 0x1b3b # 399| "\x00\x1b\x3c\x00\x1b\x35", 0x1b3d Error: COMPILER_WARNING: [#def579] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:398:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 398 | "\x00\x1b\x3a\x00\x1b\x35", 0x1b3b # | ^~~~~~~~~~~~~~~~~~~~ # 396| "\x00\x1b\x0d\x00\x1b\x35", 0x1b0e # 397| "\x00\x1b\x11\x00\x1b\x35", 0x1b12 # 398|-> "\x00\x1b\x3a\x00\x1b\x35", 0x1b3b # 399| "\x00\x1b\x3c\x00\x1b\x35", 0x1b3d # 400| "\x00\x1b\x3e\x00\x1b\x35", 0x1b40 Error: COMPILER_WARNING (CWE-909): [#def580] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:399:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 399 | "\x00\x1b\x3c\x00\x1b\x35", 0x1b3d # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 397| "\x00\x1b\x11\x00\x1b\x35", 0x1b12 # 398| "\x00\x1b\x3a\x00\x1b\x35", 0x1b3b # 399|-> "\x00\x1b\x3c\x00\x1b\x35", 0x1b3d # 400| "\x00\x1b\x3e\x00\x1b\x35", 0x1b40 # 401| "\x00\x1b\x3f\x00\x1b\x35", 0x1b41 Error: COMPILER_WARNING: [#def581] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:399:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 399 | "\x00\x1b\x3c\x00\x1b\x35", 0x1b3d # | ^~~~~~~~~~~~~~~~~~~~ # 397| "\x00\x1b\x11\x00\x1b\x35", 0x1b12 # 398| "\x00\x1b\x3a\x00\x1b\x35", 0x1b3b # 399|-> "\x00\x1b\x3c\x00\x1b\x35", 0x1b3d # 400| "\x00\x1b\x3e\x00\x1b\x35", 0x1b40 # 401| "\x00\x1b\x3f\x00\x1b\x35", 0x1b41 Error: COMPILER_WARNING (CWE-909): [#def582] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:401:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 401 | "\x00\x1b\x3f\x00\x1b\x35", 0x1b41 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 399| "\x00\x1b\x3c\x00\x1b\x35", 0x1b3d # 400| "\x00\x1b\x3e\x00\x1b\x35", 0x1b40 # 401|-> "\x00\x1b\x3f\x00\x1b\x35", 0x1b41 # 402| "\x00\x1b\x42\x00\x1b\x35", 0x1b43 # 403| "\x00\x00\x41\x00\x03\x25", 0x1e00 Error: COMPILER_WARNING (CWE-909): [#def583] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:402:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 402 | "\x00\x1b\x42\x00\x1b\x35", 0x1b43 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 400| "\x00\x1b\x3e\x00\x1b\x35", 0x1b40 # 401| "\x00\x1b\x3f\x00\x1b\x35", 0x1b41 # 402|-> "\x00\x1b\x42\x00\x1b\x35", 0x1b43 # 403| "\x00\x00\x41\x00\x03\x25", 0x1e00 # 404| "\x00\x00\x61\x00\x03\x25", 0x1e01 Error: COMPILER_WARNING: [#def584] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:402:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 402 | "\x00\x1b\x42\x00\x1b\x35", 0x1b43 # | ^~~~~~~~~~~~~~~~~~~~ # 400| "\x00\x1b\x3e\x00\x1b\x35", 0x1b40 # 401| "\x00\x1b\x3f\x00\x1b\x35", 0x1b41 # 402|-> "\x00\x1b\x42\x00\x1b\x35", 0x1b43 # 403| "\x00\x00\x41\x00\x03\x25", 0x1e00 # 404| "\x00\x00\x61\x00\x03\x25", 0x1e01 Error: COMPILER_WARNING: [#def585] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:404:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 404 | "\x00\x00\x61\x00\x03\x25", 0x1e01 # | ^~~~~~~~~~~~~~~~~~~~ # 402| "\x00\x1b\x42\x00\x1b\x35", 0x1b43 # 403| "\x00\x00\x41\x00\x03\x25", 0x1e00 # 404|-> "\x00\x00\x61\x00\x03\x25", 0x1e01 # 405| "\x00\x00\x42\x00\x03\x07", 0x1e02 # 406| "\x00\x00\x62\x00\x03\x07", 0x1e03 Error: COMPILER_WARNING: [#def586] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:405:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 405 | "\x00\x00\x42\x00\x03\x07", 0x1e02 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 403| "\x00\x00\x41\x00\x03\x25", 0x1e00 # 404| "\x00\x00\x61\x00\x03\x25", 0x1e01 # 405|-> "\x00\x00\x42\x00\x03\x07", 0x1e02 # 406| "\x00\x00\x62\x00\x03\x07", 0x1e03 # 407| "\x00\x00\x42\x00\x03\x23", 0x1e04 Error: COMPILER_WARNING: [#def587] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:406:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 406 | "\x00\x00\x62\x00\x03\x07", 0x1e03 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 404| "\x00\x00\x61\x00\x03\x25", 0x1e01 # 405| "\x00\x00\x42\x00\x03\x07", 0x1e02 # 406|-> "\x00\x00\x62\x00\x03\x07", 0x1e03 # 407| "\x00\x00\x42\x00\x03\x23", 0x1e04 # 408| "\x00\x00\x62\x00\x03\x23", 0x1e05 Error: COMPILER_WARNING: [#def588] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:407:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 407 | "\x00\x00\x42\x00\x03\x23", 0x1e04 # | ^~~~~~~~~~~~~~~~~~~~ # 405| "\x00\x00\x42\x00\x03\x07", 0x1e02 # 406| "\x00\x00\x62\x00\x03\x07", 0x1e03 # 407|-> "\x00\x00\x42\x00\x03\x23", 0x1e04 # 408| "\x00\x00\x62\x00\x03\x23", 0x1e05 # 409| "\x00\x00\x42\x00\x03\x31", 0x1e06 Error: COMPILER_WARNING (CWE-909): [#def589] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:409:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 409 | "\x00\x00\x42\x00\x03\x31", 0x1e06 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 407| "\x00\x00\x42\x00\x03\x23", 0x1e04 # 408| "\x00\x00\x62\x00\x03\x23", 0x1e05 # 409|-> "\x00\x00\x42\x00\x03\x31", 0x1e06 # 410| "\x00\x00\x62\x00\x03\x31", 0x1e07 # 411| "\x00\x00\xc7\x00\x03\x01", 0x1e08 Error: COMPILER_WARNING: [#def590] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:409:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 409 | "\x00\x00\x42\x00\x03\x31", 0x1e06 # | ^~~~~~~~~~~~~~~~~~~~ # 407| "\x00\x00\x42\x00\x03\x23", 0x1e04 # 408| "\x00\x00\x62\x00\x03\x23", 0x1e05 # 409|-> "\x00\x00\x42\x00\x03\x31", 0x1e06 # 410| "\x00\x00\x62\x00\x03\x31", 0x1e07 # 411| "\x00\x00\xc7\x00\x03\x01", 0x1e08 Error: COMPILER_WARNING (CWE-909): [#def591] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:411:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 411 | "\x00\x00\xc7\x00\x03\x01", 0x1e08 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 409| "\x00\x00\x42\x00\x03\x31", 0x1e06 # 410| "\x00\x00\x62\x00\x03\x31", 0x1e07 # 411|-> "\x00\x00\xc7\x00\x03\x01", 0x1e08 # 412| "\x00\x00\xe7\x00\x03\x01", 0x1e09 # 413| "\x00\x00\x44\x00\x03\x07", 0x1e0a Error: COMPILER_WARNING: [#def592] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:411:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 411 | "\x00\x00\xc7\x00\x03\x01", 0x1e08 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 409| "\x00\x00\x42\x00\x03\x31", 0x1e06 # 410| "\x00\x00\x62\x00\x03\x31", 0x1e07 # 411|-> "\x00\x00\xc7\x00\x03\x01", 0x1e08 # 412| "\x00\x00\xe7\x00\x03\x01", 0x1e09 # 413| "\x00\x00\x44\x00\x03\x07", 0x1e0a Error: COMPILER_WARNING (CWE-909): [#def593] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:412:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 412 | "\x00\x00\xe7\x00\x03\x01", 0x1e09 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 410| "\x00\x00\x62\x00\x03\x31", 0x1e07 # 411| "\x00\x00\xc7\x00\x03\x01", 0x1e08 # 412|-> "\x00\x00\xe7\x00\x03\x01", 0x1e09 # 413| "\x00\x00\x44\x00\x03\x07", 0x1e0a # 414| "\x00\x00\x64\x00\x03\x07", 0x1e0b Error: COMPILER_WARNING: [#def594] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:412:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 412 | "\x00\x00\xe7\x00\x03\x01", 0x1e09 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 410| "\x00\x00\x62\x00\x03\x31", 0x1e07 # 411| "\x00\x00\xc7\x00\x03\x01", 0x1e08 # 412|-> "\x00\x00\xe7\x00\x03\x01", 0x1e09 # 413| "\x00\x00\x44\x00\x03\x07", 0x1e0a # 414| "\x00\x00\x64\x00\x03\x07", 0x1e0b Error: COMPILER_WARNING: [#def595] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:413:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 413 | "\x00\x00\x44\x00\x03\x07", 0x1e0a # | ^~~~~~~~~~~~~~~~~~~~~~~ # 411| "\x00\x00\xc7\x00\x03\x01", 0x1e08 # 412| "\x00\x00\xe7\x00\x03\x01", 0x1e09 # 413|-> "\x00\x00\x44\x00\x03\x07", 0x1e0a # 414| "\x00\x00\x64\x00\x03\x07", 0x1e0b # 415| "\x00\x00\x44\x00\x03\x23", 0x1e0c Error: COMPILER_WARNING: [#def596] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:414:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 414 | "\x00\x00\x64\x00\x03\x07", 0x1e0b # | ^~~~~~~~~~~~~~~~~~~~~~~ # 412| "\x00\x00\xe7\x00\x03\x01", 0x1e09 # 413| "\x00\x00\x44\x00\x03\x07", 0x1e0a # 414|-> "\x00\x00\x64\x00\x03\x07", 0x1e0b # 415| "\x00\x00\x44\x00\x03\x23", 0x1e0c # 416| "\x00\x00\x64\x00\x03\x23", 0x1e0d Error: COMPILER_WARNING: [#def597] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:415:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 415 | "\x00\x00\x44\x00\x03\x23", 0x1e0c # | ^~~~~~~~~~~~~~~~~~~~ # 413| "\x00\x00\x44\x00\x03\x07", 0x1e0a # 414| "\x00\x00\x64\x00\x03\x07", 0x1e0b # 415|-> "\x00\x00\x44\x00\x03\x23", 0x1e0c # 416| "\x00\x00\x64\x00\x03\x23", 0x1e0d # 417| "\x00\x00\x44\x00\x03\x31", 0x1e0e Error: COMPILER_WARNING: [#def598] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:416:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 416 | "\x00\x00\x64\x00\x03\x23", 0x1e0d # | ^~~~~~~~~~~~~~~~~~~~ # 414| "\x00\x00\x64\x00\x03\x07", 0x1e0b # 415| "\x00\x00\x44\x00\x03\x23", 0x1e0c # 416|-> "\x00\x00\x64\x00\x03\x23", 0x1e0d # 417| "\x00\x00\x44\x00\x03\x31", 0x1e0e # 418| "\x00\x00\x64\x00\x03\x31", 0x1e0f Error: COMPILER_WARNING: [#def599] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:417:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 417 | "\x00\x00\x44\x00\x03\x31", 0x1e0e # | ^~~~~~~~~~~~~~~~~~~~ # 415| "\x00\x00\x44\x00\x03\x23", 0x1e0c # 416| "\x00\x00\x64\x00\x03\x23", 0x1e0d # 417|-> "\x00\x00\x44\x00\x03\x31", 0x1e0e # 418| "\x00\x00\x64\x00\x03\x31", 0x1e0f # 419| "\x00\x00\x44\x00\x03\x27", 0x1e10 Error: COMPILER_WARNING: [#def600] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:418:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 418 | "\x00\x00\x64\x00\x03\x31", 0x1e0f # | ^~~~~~~~~~~~~~~~~~~~ # 416| "\x00\x00\x64\x00\x03\x23", 0x1e0d # 417| "\x00\x00\x44\x00\x03\x31", 0x1e0e # 418|-> "\x00\x00\x64\x00\x03\x31", 0x1e0f # 419| "\x00\x00\x44\x00\x03\x27", 0x1e10 # 420| "\x00\x00\x64\x00\x03\x27", 0x1e11 Error: COMPILER_WARNING: [#def601] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:419:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 419 | "\x00\x00\x44\x00\x03\x27", 0x1e10 # | ^~~~~~~~~~~~~~~~~~~~ # 417| "\x00\x00\x44\x00\x03\x31", 0x1e0e # 418| "\x00\x00\x64\x00\x03\x31", 0x1e0f # 419|-> "\x00\x00\x44\x00\x03\x27", 0x1e10 # 420| "\x00\x00\x64\x00\x03\x27", 0x1e11 # 421| "\x00\x00\x44\x00\x03\x2d", 0x1e12 Error: COMPILER_WARNING: [#def602] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:420:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 420 | "\x00\x00\x64\x00\x03\x27", 0x1e11 # | ^~~~~~~~~~~~~~~~~~~~ # 418| "\x00\x00\x64\x00\x03\x31", 0x1e0f # 419| "\x00\x00\x44\x00\x03\x27", 0x1e10 # 420|-> "\x00\x00\x64\x00\x03\x27", 0x1e11 # 421| "\x00\x00\x44\x00\x03\x2d", 0x1e12 # 422| "\x00\x00\x64\x00\x03\x2d", 0x1e13 Error: COMPILER_WARNING: [#def603] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:421:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 421 | "\x00\x00\x44\x00\x03\x2d", 0x1e12 # | ^~~~~~~~~~~~~~~~~~~~ # 419| "\x00\x00\x44\x00\x03\x27", 0x1e10 # 420| "\x00\x00\x64\x00\x03\x27", 0x1e11 # 421|-> "\x00\x00\x44\x00\x03\x2d", 0x1e12 # 422| "\x00\x00\x64\x00\x03\x2d", 0x1e13 # 423| "\x00\x01\x12\x00\x03\x00", 0x1e14 Error: COMPILER_WARNING: [#def604] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:422:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 422 | "\x00\x00\x64\x00\x03\x2d", 0x1e13 # | ^~~~~~~~~~~~~~~~~~~~ # 420| "\x00\x00\x64\x00\x03\x27", 0x1e11 # 421| "\x00\x00\x44\x00\x03\x2d", 0x1e12 # 422|-> "\x00\x00\x64\x00\x03\x2d", 0x1e13 # 423| "\x00\x01\x12\x00\x03\x00", 0x1e14 # 424| "\x00\x01\x13\x00\x03\x00", 0x1e15 Error: COMPILER_WARNING: [#def605] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:423:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 423 | "\x00\x01\x12\x00\x03\x00", 0x1e14 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 421| "\x00\x00\x44\x00\x03\x2d", 0x1e12 # 422| "\x00\x00\x64\x00\x03\x2d", 0x1e13 # 423|-> "\x00\x01\x12\x00\x03\x00", 0x1e14 # 424| "\x00\x01\x13\x00\x03\x00", 0x1e15 # 425| "\x00\x01\x12\x00\x03\x01", 0x1e16 Error: COMPILER_WARNING: [#def606] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:424:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 424 | "\x00\x01\x13\x00\x03\x00", 0x1e15 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 422| "\x00\x00\x64\x00\x03\x2d", 0x1e13 # 423| "\x00\x01\x12\x00\x03\x00", 0x1e14 # 424|-> "\x00\x01\x13\x00\x03\x00", 0x1e15 # 425| "\x00\x01\x12\x00\x03\x01", 0x1e16 # 426| "\x00\x01\x13\x00\x03\x01", 0x1e17 Error: COMPILER_WARNING: [#def607] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:425:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 425 | "\x00\x01\x12\x00\x03\x01", 0x1e16 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 423| "\x00\x01\x12\x00\x03\x00", 0x1e14 # 424| "\x00\x01\x13\x00\x03\x00", 0x1e15 # 425|-> "\x00\x01\x12\x00\x03\x01", 0x1e16 # 426| "\x00\x01\x13\x00\x03\x01", 0x1e17 # 427| "\x00\x00\x45\x00\x03\x2d", 0x1e18 Error: COMPILER_WARNING: [#def608] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:426:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 426 | "\x00\x01\x13\x00\x03\x01", 0x1e17 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 424| "\x00\x01\x13\x00\x03\x00", 0x1e15 # 425| "\x00\x01\x12\x00\x03\x01", 0x1e16 # 426|-> "\x00\x01\x13\x00\x03\x01", 0x1e17 # 427| "\x00\x00\x45\x00\x03\x2d", 0x1e18 # 428| "\x00\x00\x65\x00\x03\x2d", 0x1e19 Error: COMPILER_WARNING: [#def609] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:427:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 427 | "\x00\x00\x45\x00\x03\x2d", 0x1e18 # | ^~~~~~~~~~~~~~~~~~~~ # 425| "\x00\x01\x12\x00\x03\x01", 0x1e16 # 426| "\x00\x01\x13\x00\x03\x01", 0x1e17 # 427|-> "\x00\x00\x45\x00\x03\x2d", 0x1e18 # 428| "\x00\x00\x65\x00\x03\x2d", 0x1e19 # 429| "\x00\x00\x45\x00\x03\x30", 0x1e1a Error: COMPILER_WARNING: [#def610] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:428:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 428 | "\x00\x00\x65\x00\x03\x2d", 0x1e19 # | ^~~~~~~~~~~~~~~~~~~~ # 426| "\x00\x01\x13\x00\x03\x01", 0x1e17 # 427| "\x00\x00\x45\x00\x03\x2d", 0x1e18 # 428|-> "\x00\x00\x65\x00\x03\x2d", 0x1e19 # 429| "\x00\x00\x45\x00\x03\x30", 0x1e1a # 430| "\x00\x00\x65\x00\x03\x30", 0x1e1b Error: COMPILER_WARNING: [#def611] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:429:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 429 | "\x00\x00\x45\x00\x03\x30", 0x1e1a # | ^~~~~~~~~~~~~~~~~~~~ # 427| "\x00\x00\x45\x00\x03\x2d", 0x1e18 # 428| "\x00\x00\x65\x00\x03\x2d", 0x1e19 # 429|-> "\x00\x00\x45\x00\x03\x30", 0x1e1a # 430| "\x00\x00\x65\x00\x03\x30", 0x1e1b # 431| "\x00\x02\x28\x00\x03\x06", 0x1e1c Error: COMPILER_WARNING: [#def612] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:430:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 430 | "\x00\x00\x65\x00\x03\x30", 0x1e1b # | ^~~~~~~~~~~~~~~~~~~~ # 428| "\x00\x00\x65\x00\x03\x2d", 0x1e19 # 429| "\x00\x00\x45\x00\x03\x30", 0x1e1a # 430|-> "\x00\x00\x65\x00\x03\x30", 0x1e1b # 431| "\x00\x02\x28\x00\x03\x06", 0x1e1c # 432| "\x00\x02\x29\x00\x03\x06", 0x1e1d Error: COMPILER_WARNING: [#def613] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:431:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 431 | "\x00\x02\x28\x00\x03\x06", 0x1e1c # | ^~~~~~~~~~~~~~~~~~~~~~~ # 429| "\x00\x00\x45\x00\x03\x30", 0x1e1a # 430| "\x00\x00\x65\x00\x03\x30", 0x1e1b # 431|-> "\x00\x02\x28\x00\x03\x06", 0x1e1c # 432| "\x00\x02\x29\x00\x03\x06", 0x1e1d # 433| "\x00\x00\x46\x00\x03\x07", 0x1e1e Error: COMPILER_WARNING: [#def614] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:432:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 432 | "\x00\x02\x29\x00\x03\x06", 0x1e1d # | ^~~~~~~~~~~~~~~~~~~~~~~ # 430| "\x00\x00\x65\x00\x03\x30", 0x1e1b # 431| "\x00\x02\x28\x00\x03\x06", 0x1e1c # 432|-> "\x00\x02\x29\x00\x03\x06", 0x1e1d # 433| "\x00\x00\x46\x00\x03\x07", 0x1e1e # 434| "\x00\x00\x66\x00\x03\x07", 0x1e1f Error: COMPILER_WARNING: [#def615] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:433:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 433 | "\x00\x00\x46\x00\x03\x07", 0x1e1e # | ^~~~~~~~~~~~~~~~~~~~~~~ # 431| "\x00\x02\x28\x00\x03\x06", 0x1e1c # 432| "\x00\x02\x29\x00\x03\x06", 0x1e1d # 433|-> "\x00\x00\x46\x00\x03\x07", 0x1e1e # 434| "\x00\x00\x66\x00\x03\x07", 0x1e1f # 435| "\x00\x00\x47\x00\x03\x04", 0x1e20 Error: COMPILER_WARNING: [#def616] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:434:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 434 | "\x00\x00\x66\x00\x03\x07", 0x1e1f # | ^~~~~~~~~~~~~~~~~~~~~~~ # 432| "\x00\x02\x29\x00\x03\x06", 0x1e1d # 433| "\x00\x00\x46\x00\x03\x07", 0x1e1e # 434|-> "\x00\x00\x66\x00\x03\x07", 0x1e1f # 435| "\x00\x00\x47\x00\x03\x04", 0x1e20 # 436| "\x00\x00\x67\x00\x03\x04", 0x1e21 Error: COMPILER_WARNING: [#def617] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:435:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 435 | "\x00\x00\x47\x00\x03\x04", 0x1e20 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 433| "\x00\x00\x46\x00\x03\x07", 0x1e1e # 434| "\x00\x00\x66\x00\x03\x07", 0x1e1f # 435|-> "\x00\x00\x47\x00\x03\x04", 0x1e20 # 436| "\x00\x00\x67\x00\x03\x04", 0x1e21 # 437| "\x00\x00\x48\x00\x03\x07", 0x1e22 Error: COMPILER_WARNING: [#def618] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:436:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 436 | "\x00\x00\x67\x00\x03\x04", 0x1e21 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 434| "\x00\x00\x66\x00\x03\x07", 0x1e1f # 435| "\x00\x00\x47\x00\x03\x04", 0x1e20 # 436|-> "\x00\x00\x67\x00\x03\x04", 0x1e21 # 437| "\x00\x00\x48\x00\x03\x07", 0x1e22 # 438| "\x00\x00\x68\x00\x03\x07", 0x1e23 Error: COMPILER_WARNING: [#def619] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:437:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 437 | "\x00\x00\x48\x00\x03\x07", 0x1e22 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 435| "\x00\x00\x47\x00\x03\x04", 0x1e20 # 436| "\x00\x00\x67\x00\x03\x04", 0x1e21 # 437|-> "\x00\x00\x48\x00\x03\x07", 0x1e22 # 438| "\x00\x00\x68\x00\x03\x07", 0x1e23 # 439| "\x00\x00\x48\x00\x03\x23", 0x1e24 Error: COMPILER_WARNING: [#def620] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:438:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 438 | "\x00\x00\x68\x00\x03\x07", 0x1e23 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 436| "\x00\x00\x67\x00\x03\x04", 0x1e21 # 437| "\x00\x00\x48\x00\x03\x07", 0x1e22 # 438|-> "\x00\x00\x68\x00\x03\x07", 0x1e23 # 439| "\x00\x00\x48\x00\x03\x23", 0x1e24 # 440| "\x00\x00\x68\x00\x03\x23", 0x1e25 Error: COMPILER_WARNING: [#def621] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:439:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 439 | "\x00\x00\x48\x00\x03\x23", 0x1e24 # | ^~~~~~~~~~~~~~~~~~~~ # 437| "\x00\x00\x48\x00\x03\x07", 0x1e22 # 438| "\x00\x00\x68\x00\x03\x07", 0x1e23 # 439|-> "\x00\x00\x48\x00\x03\x23", 0x1e24 # 440| "\x00\x00\x68\x00\x03\x23", 0x1e25 # 441| "\x00\x00\x48\x00\x03\x08", 0x1e26 Error: COMPILER_WARNING: [#def622] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:440:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 440 | "\x00\x00\x68\x00\x03\x23", 0x1e25 # | ^~~~~~~~~~~~~~~~~~~~ # 438| "\x00\x00\x68\x00\x03\x07", 0x1e23 # 439| "\x00\x00\x48\x00\x03\x23", 0x1e24 # 440|-> "\x00\x00\x68\x00\x03\x23", 0x1e25 # 441| "\x00\x00\x48\x00\x03\x08", 0x1e26 # 442| "\x00\x00\x68\x00\x03\x08", 0x1e27 Error: COMPILER_WARNING: [#def623] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:441:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 441 | "\x00\x00\x48\x00\x03\x08", 0x1e26 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 439| "\x00\x00\x48\x00\x03\x23", 0x1e24 # 440| "\x00\x00\x68\x00\x03\x23", 0x1e25 # 441|-> "\x00\x00\x48\x00\x03\x08", 0x1e26 # 442| "\x00\x00\x68\x00\x03\x08", 0x1e27 # 443| "\x00\x00\x48\x00\x03\x27", 0x1e28 Error: COMPILER_WARNING: [#def624] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:442:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 442 | "\x00\x00\x68\x00\x03\x08", 0x1e27 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 440| "\x00\x00\x68\x00\x03\x23", 0x1e25 # 441| "\x00\x00\x48\x00\x03\x08", 0x1e26 # 442|-> "\x00\x00\x68\x00\x03\x08", 0x1e27 # 443| "\x00\x00\x48\x00\x03\x27", 0x1e28 # 444| "\x00\x00\x68\x00\x03\x27", 0x1e29 Error: COMPILER_WARNING: [#def625] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:443:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 443 | "\x00\x00\x48\x00\x03\x27", 0x1e28 # | ^~~~~~~~~~~~~~~~~~~~ # 441| "\x00\x00\x48\x00\x03\x08", 0x1e26 # 442| "\x00\x00\x68\x00\x03\x08", 0x1e27 # 443|-> "\x00\x00\x48\x00\x03\x27", 0x1e28 # 444| "\x00\x00\x68\x00\x03\x27", 0x1e29 # 445| "\x00\x00\x48\x00\x03\x2e", 0x1e2a Error: COMPILER_WARNING: [#def626] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:444:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 444 | "\x00\x00\x68\x00\x03\x27", 0x1e29 # | ^~~~~~~~~~~~~~~~~~~~ # 442| "\x00\x00\x68\x00\x03\x08", 0x1e27 # 443| "\x00\x00\x48\x00\x03\x27", 0x1e28 # 444|-> "\x00\x00\x68\x00\x03\x27", 0x1e29 # 445| "\x00\x00\x48\x00\x03\x2e", 0x1e2a # 446| "\x00\x00\x68\x00\x03\x2e", 0x1e2b Error: COMPILER_WARNING: [#def627] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:445:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 445 | "\x00\x00\x48\x00\x03\x2e", 0x1e2a # | ^~~~~~~~~~~~~~~~~~~~ # 443| "\x00\x00\x48\x00\x03\x27", 0x1e28 # 444| "\x00\x00\x68\x00\x03\x27", 0x1e29 # 445|-> "\x00\x00\x48\x00\x03\x2e", 0x1e2a # 446| "\x00\x00\x68\x00\x03\x2e", 0x1e2b # 447| "\x00\x00\x49\x00\x03\x30", 0x1e2c Error: COMPILER_WARNING: [#def628] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:446:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 446 | "\x00\x00\x68\x00\x03\x2e", 0x1e2b # | ^~~~~~~~~~~~~~~~~~~~ # 444| "\x00\x00\x68\x00\x03\x27", 0x1e29 # 445| "\x00\x00\x48\x00\x03\x2e", 0x1e2a # 446|-> "\x00\x00\x68\x00\x03\x2e", 0x1e2b # 447| "\x00\x00\x49\x00\x03\x30", 0x1e2c # 448| "\x00\x00\x69\x00\x03\x30", 0x1e2d Error: COMPILER_WARNING: [#def629] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:447:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 447 | "\x00\x00\x49\x00\x03\x30", 0x1e2c # | ^~~~~~~~~~~~~~~~~~~~ # 445| "\x00\x00\x48\x00\x03\x2e", 0x1e2a # 446| "\x00\x00\x68\x00\x03\x2e", 0x1e2b # 447|-> "\x00\x00\x49\x00\x03\x30", 0x1e2c # 448| "\x00\x00\x69\x00\x03\x30", 0x1e2d # 449| "\x00\x00\xcf\x00\x03\x01", 0x1e2e Error: COMPILER_WARNING: [#def630] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:448:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 448 | "\x00\x00\x69\x00\x03\x30", 0x1e2d # | ^~~~~~~~~~~~~~~~~~~~ # 446| "\x00\x00\x68\x00\x03\x2e", 0x1e2b # 447| "\x00\x00\x49\x00\x03\x30", 0x1e2c # 448|-> "\x00\x00\x69\x00\x03\x30", 0x1e2d # 449| "\x00\x00\xcf\x00\x03\x01", 0x1e2e # 450| "\x00\x00\xef\x00\x03\x01", 0x1e2f Error: COMPILER_WARNING: [#def631] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:449:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 449 | "\x00\x00\xcf\x00\x03\x01", 0x1e2e # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 447| "\x00\x00\x49\x00\x03\x30", 0x1e2c # 448| "\x00\x00\x69\x00\x03\x30", 0x1e2d # 449|-> "\x00\x00\xcf\x00\x03\x01", 0x1e2e # 450| "\x00\x00\xef\x00\x03\x01", 0x1e2f # 451| "\x00\x00\x4b\x00\x03\x01", 0x1e30 Error: COMPILER_WARNING: [#def632] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:450:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 450 | "\x00\x00\xef\x00\x03\x01", 0x1e2f # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 448| "\x00\x00\x69\x00\x03\x30", 0x1e2d # 449| "\x00\x00\xcf\x00\x03\x01", 0x1e2e # 450|-> "\x00\x00\xef\x00\x03\x01", 0x1e2f # 451| "\x00\x00\x4b\x00\x03\x01", 0x1e30 # 452| "\x00\x00\x6b\x00\x03\x01", 0x1e31 Error: COMPILER_WARNING: [#def633] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:451:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 451 | "\x00\x00\x4b\x00\x03\x01", 0x1e30 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 449| "\x00\x00\xcf\x00\x03\x01", 0x1e2e # 450| "\x00\x00\xef\x00\x03\x01", 0x1e2f # 451|-> "\x00\x00\x4b\x00\x03\x01", 0x1e30 # 452| "\x00\x00\x6b\x00\x03\x01", 0x1e31 # 453| "\x00\x00\x4b\x00\x03\x23", 0x1e32 Error: COMPILER_WARNING: [#def634] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:452:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 452 | "\x00\x00\x6b\x00\x03\x01", 0x1e31 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 450| "\x00\x00\xef\x00\x03\x01", 0x1e2f # 451| "\x00\x00\x4b\x00\x03\x01", 0x1e30 # 452|-> "\x00\x00\x6b\x00\x03\x01", 0x1e31 # 453| "\x00\x00\x4b\x00\x03\x23", 0x1e32 # 454| "\x00\x00\x6b\x00\x03\x23", 0x1e33 Error: COMPILER_WARNING: [#def635] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:453:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 453 | "\x00\x00\x4b\x00\x03\x23", 0x1e32 # | ^~~~~~~~~~~~~~~~~~~~ # 451| "\x00\x00\x4b\x00\x03\x01", 0x1e30 # 452| "\x00\x00\x6b\x00\x03\x01", 0x1e31 # 453|-> "\x00\x00\x4b\x00\x03\x23", 0x1e32 # 454| "\x00\x00\x6b\x00\x03\x23", 0x1e33 # 455| "\x00\x00\x4b\x00\x03\x31", 0x1e34 Error: COMPILER_WARNING: [#def636] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:454:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 454 | "\x00\x00\x6b\x00\x03\x23", 0x1e33 # | ^~~~~~~~~~~~~~~~~~~~ # 452| "\x00\x00\x6b\x00\x03\x01", 0x1e31 # 453| "\x00\x00\x4b\x00\x03\x23", 0x1e32 # 454|-> "\x00\x00\x6b\x00\x03\x23", 0x1e33 # 455| "\x00\x00\x4b\x00\x03\x31", 0x1e34 # 456| "\x00\x00\x6b\x00\x03\x31", 0x1e35 Error: COMPILER_WARNING: [#def637] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:455:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 455 | "\x00\x00\x4b\x00\x03\x31", 0x1e34 # | ^~~~~~~~~~~~~~~~~~~~ # 453| "\x00\x00\x4b\x00\x03\x23", 0x1e32 # 454| "\x00\x00\x6b\x00\x03\x23", 0x1e33 # 455|-> "\x00\x00\x4b\x00\x03\x31", 0x1e34 # 456| "\x00\x00\x6b\x00\x03\x31", 0x1e35 # 457| "\x00\x00\x4c\x00\x03\x23", 0x1e36 Error: COMPILER_WARNING (CWE-909): [#def638] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:456:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 456 | "\x00\x00\x6b\x00\x03\x31", 0x1e35 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 454| "\x00\x00\x6b\x00\x03\x23", 0x1e33 # 455| "\x00\x00\x4b\x00\x03\x31", 0x1e34 # 456|-> "\x00\x00\x6b\x00\x03\x31", 0x1e35 # 457| "\x00\x00\x4c\x00\x03\x23", 0x1e36 # 458| "\x00\x00\x6c\x00\x03\x23", 0x1e37 Error: COMPILER_WARNING: [#def639] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:456:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 456 | "\x00\x00\x6b\x00\x03\x31", 0x1e35 # | ^~~~~~~~~~~~~~~~~~~~ # 454| "\x00\x00\x6b\x00\x03\x23", 0x1e33 # 455| "\x00\x00\x4b\x00\x03\x31", 0x1e34 # 456|-> "\x00\x00\x6b\x00\x03\x31", 0x1e35 # 457| "\x00\x00\x4c\x00\x03\x23", 0x1e36 # 458| "\x00\x00\x6c\x00\x03\x23", 0x1e37 Error: COMPILER_WARNING: [#def640] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:457:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 457 | "\x00\x00\x4c\x00\x03\x23", 0x1e36 # | ^~~~~~~~~~~~~~~~~~~~ # 455| "\x00\x00\x4b\x00\x03\x31", 0x1e34 # 456| "\x00\x00\x6b\x00\x03\x31", 0x1e35 # 457|-> "\x00\x00\x4c\x00\x03\x23", 0x1e36 # 458| "\x00\x00\x6c\x00\x03\x23", 0x1e37 # 459| "\x00\x1e\x36\x00\x03\x04", 0x1e38 Error: COMPILER_WARNING: [#def641] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:458:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 458 | "\x00\x00\x6c\x00\x03\x23", 0x1e37 # | ^~~~~~~~~~~~~~~~~~~~ # 456| "\x00\x00\x6b\x00\x03\x31", 0x1e35 # 457| "\x00\x00\x4c\x00\x03\x23", 0x1e36 # 458|-> "\x00\x00\x6c\x00\x03\x23", 0x1e37 # 459| "\x00\x1e\x36\x00\x03\x04", 0x1e38 # 460| "\x00\x1e\x37\x00\x03\x04", 0x1e39 Error: COMPILER_WARNING: [#def642] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:459:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 459 | "\x00\x1e\x36\x00\x03\x04", 0x1e38 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 457| "\x00\x00\x4c\x00\x03\x23", 0x1e36 # 458| "\x00\x00\x6c\x00\x03\x23", 0x1e37 # 459|-> "\x00\x1e\x36\x00\x03\x04", 0x1e38 # 460| "\x00\x1e\x37\x00\x03\x04", 0x1e39 # 461| "\x00\x00\x4c\x00\x03\x31", 0x1e3a Error: COMPILER_WARNING: [#def643] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:460:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 460 | "\x00\x1e\x37\x00\x03\x04", 0x1e39 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 458| "\x00\x00\x6c\x00\x03\x23", 0x1e37 # 459| "\x00\x1e\x36\x00\x03\x04", 0x1e38 # 460|-> "\x00\x1e\x37\x00\x03\x04", 0x1e39 # 461| "\x00\x00\x4c\x00\x03\x31", 0x1e3a # 462| "\x00\x00\x6c\x00\x03\x31", 0x1e3b Error: COMPILER_WARNING: [#def644] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:461:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 461 | "\x00\x00\x4c\x00\x03\x31", 0x1e3a # | ^~~~~~~~~~~~~~~~~~~~ # 459| "\x00\x1e\x36\x00\x03\x04", 0x1e38 # 460| "\x00\x1e\x37\x00\x03\x04", 0x1e39 # 461|-> "\x00\x00\x4c\x00\x03\x31", 0x1e3a # 462| "\x00\x00\x6c\x00\x03\x31", 0x1e3b # 463| "\x00\x00\x4c\x00\x03\x2d", 0x1e3c Error: COMPILER_WARNING: [#def645] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:462:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 462 | "\x00\x00\x6c\x00\x03\x31", 0x1e3b # | ^~~~~~~~~~~~~~~~~~~~ # 460| "\x00\x1e\x37\x00\x03\x04", 0x1e39 # 461| "\x00\x00\x4c\x00\x03\x31", 0x1e3a # 462|-> "\x00\x00\x6c\x00\x03\x31", 0x1e3b # 463| "\x00\x00\x4c\x00\x03\x2d", 0x1e3c # 464| "\x00\x00\x6c\x00\x03\x2d", 0x1e3d Error: COMPILER_WARNING (CWE-909): [#def646] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:463:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 463 | "\x00\x00\x4c\x00\x03\x2d", 0x1e3c # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 461| "\x00\x00\x4c\x00\x03\x31", 0x1e3a # 462| "\x00\x00\x6c\x00\x03\x31", 0x1e3b # 463|-> "\x00\x00\x4c\x00\x03\x2d", 0x1e3c # 464| "\x00\x00\x6c\x00\x03\x2d", 0x1e3d # 465| "\x00\x00\x4d\x00\x03\x01", 0x1e3e Error: COMPILER_WARNING: [#def647] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:463:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 463 | "\x00\x00\x4c\x00\x03\x2d", 0x1e3c # | ^~~~~~~~~~~~~~~~~~~~ # 461| "\x00\x00\x4c\x00\x03\x31", 0x1e3a # 462| "\x00\x00\x6c\x00\x03\x31", 0x1e3b # 463|-> "\x00\x00\x4c\x00\x03\x2d", 0x1e3c # 464| "\x00\x00\x6c\x00\x03\x2d", 0x1e3d # 465| "\x00\x00\x4d\x00\x03\x01", 0x1e3e Error: COMPILER_WARNING: [#def648] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:464:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 464 | "\x00\x00\x6c\x00\x03\x2d", 0x1e3d # | ^~~~~~~~~~~~~~~~~~~~ # 462| "\x00\x00\x6c\x00\x03\x31", 0x1e3b # 463| "\x00\x00\x4c\x00\x03\x2d", 0x1e3c # 464|-> "\x00\x00\x6c\x00\x03\x2d", 0x1e3d # 465| "\x00\x00\x4d\x00\x03\x01", 0x1e3e # 466| "\x00\x00\x6d\x00\x03\x01", 0x1e3f Error: COMPILER_WARNING: [#def649] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:465:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 465 | "\x00\x00\x4d\x00\x03\x01", 0x1e3e # | ^~~~~~~~~~~~~~~~~~~~~~~ # 463| "\x00\x00\x4c\x00\x03\x2d", 0x1e3c # 464| "\x00\x00\x6c\x00\x03\x2d", 0x1e3d # 465|-> "\x00\x00\x4d\x00\x03\x01", 0x1e3e # 466| "\x00\x00\x6d\x00\x03\x01", 0x1e3f # 467| "\x00\x00\x4d\x00\x03\x07", 0x1e40 Error: COMPILER_WARNING: [#def650] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:466:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 466 | "\x00\x00\x6d\x00\x03\x01", 0x1e3f # | ^~~~~~~~~~~~~~~~~~~~~~~ # 464| "\x00\x00\x6c\x00\x03\x2d", 0x1e3d # 465| "\x00\x00\x4d\x00\x03\x01", 0x1e3e # 466|-> "\x00\x00\x6d\x00\x03\x01", 0x1e3f # 467| "\x00\x00\x4d\x00\x03\x07", 0x1e40 # 468| "\x00\x00\x6d\x00\x03\x07", 0x1e41 Error: COMPILER_WARNING: [#def651] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:467:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 467 | "\x00\x00\x4d\x00\x03\x07", 0x1e40 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 465| "\x00\x00\x4d\x00\x03\x01", 0x1e3e # 466| "\x00\x00\x6d\x00\x03\x01", 0x1e3f # 467|-> "\x00\x00\x4d\x00\x03\x07", 0x1e40 # 468| "\x00\x00\x6d\x00\x03\x07", 0x1e41 # 469| "\x00\x00\x4d\x00\x03\x23", 0x1e42 Error: COMPILER_WARNING: [#def652] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:468:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 468 | "\x00\x00\x6d\x00\x03\x07", 0x1e41 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 466| "\x00\x00\x6d\x00\x03\x01", 0x1e3f # 467| "\x00\x00\x4d\x00\x03\x07", 0x1e40 # 468|-> "\x00\x00\x6d\x00\x03\x07", 0x1e41 # 469| "\x00\x00\x4d\x00\x03\x23", 0x1e42 # 470| "\x00\x00\x6d\x00\x03\x23", 0x1e43 Error: COMPILER_WARNING: [#def653] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:469:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 469 | "\x00\x00\x4d\x00\x03\x23", 0x1e42 # | ^~~~~~~~~~~~~~~~~~~~ # 467| "\x00\x00\x4d\x00\x03\x07", 0x1e40 # 468| "\x00\x00\x6d\x00\x03\x07", 0x1e41 # 469|-> "\x00\x00\x4d\x00\x03\x23", 0x1e42 # 470| "\x00\x00\x6d\x00\x03\x23", 0x1e43 # 471| "\x00\x00\x4e\x00\x03\x07", 0x1e44 Error: COMPILER_WARNING: [#def654] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:470:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 470 | "\x00\x00\x6d\x00\x03\x23", 0x1e43 # | ^~~~~~~~~~~~~~~~~~~~ # 468| "\x00\x00\x6d\x00\x03\x07", 0x1e41 # 469| "\x00\x00\x4d\x00\x03\x23", 0x1e42 # 470|-> "\x00\x00\x6d\x00\x03\x23", 0x1e43 # 471| "\x00\x00\x4e\x00\x03\x07", 0x1e44 # 472| "\x00\x00\x6e\x00\x03\x07", 0x1e45 Error: COMPILER_WARNING: [#def655] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:471:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 471 | "\x00\x00\x4e\x00\x03\x07", 0x1e44 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 469| "\x00\x00\x4d\x00\x03\x23", 0x1e42 # 470| "\x00\x00\x6d\x00\x03\x23", 0x1e43 # 471|-> "\x00\x00\x4e\x00\x03\x07", 0x1e44 # 472| "\x00\x00\x6e\x00\x03\x07", 0x1e45 # 473| "\x00\x00\x4e\x00\x03\x23", 0x1e46 Error: COMPILER_WARNING: [#def656] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:472:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 472 | "\x00\x00\x6e\x00\x03\x07", 0x1e45 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 470| "\x00\x00\x6d\x00\x03\x23", 0x1e43 # 471| "\x00\x00\x4e\x00\x03\x07", 0x1e44 # 472|-> "\x00\x00\x6e\x00\x03\x07", 0x1e45 # 473| "\x00\x00\x4e\x00\x03\x23", 0x1e46 # 474| "\x00\x00\x6e\x00\x03\x23", 0x1e47 Error: COMPILER_WARNING: [#def657] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:473:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 473 | "\x00\x00\x4e\x00\x03\x23", 0x1e46 # | ^~~~~~~~~~~~~~~~~~~~ # 471| "\x00\x00\x4e\x00\x03\x07", 0x1e44 # 472| "\x00\x00\x6e\x00\x03\x07", 0x1e45 # 473|-> "\x00\x00\x4e\x00\x03\x23", 0x1e46 # 474| "\x00\x00\x6e\x00\x03\x23", 0x1e47 # 475| "\x00\x00\x4e\x00\x03\x31", 0x1e48 Error: COMPILER_WARNING: [#def658] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:474:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 474 | "\x00\x00\x6e\x00\x03\x23", 0x1e47 # | ^~~~~~~~~~~~~~~~~~~~ # 472| "\x00\x00\x6e\x00\x03\x07", 0x1e45 # 473| "\x00\x00\x4e\x00\x03\x23", 0x1e46 # 474|-> "\x00\x00\x6e\x00\x03\x23", 0x1e47 # 475| "\x00\x00\x4e\x00\x03\x31", 0x1e48 # 476| "\x00\x00\x6e\x00\x03\x31", 0x1e49 Error: COMPILER_WARNING: [#def659] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:475:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 475 | "\x00\x00\x4e\x00\x03\x31", 0x1e48 # | ^~~~~~~~~~~~~~~~~~~~ # 473| "\x00\x00\x4e\x00\x03\x23", 0x1e46 # 474| "\x00\x00\x6e\x00\x03\x23", 0x1e47 # 475|-> "\x00\x00\x4e\x00\x03\x31", 0x1e48 # 476| "\x00\x00\x6e\x00\x03\x31", 0x1e49 # 477| "\x00\x00\x4e\x00\x03\x2d", 0x1e4a Error: COMPILER_WARNING: [#def660] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:476:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 476 | "\x00\x00\x6e\x00\x03\x31", 0x1e49 # | ^~~~~~~~~~~~~~~~~~~~ # 474| "\x00\x00\x6e\x00\x03\x23", 0x1e47 # 475| "\x00\x00\x4e\x00\x03\x31", 0x1e48 # 476|-> "\x00\x00\x6e\x00\x03\x31", 0x1e49 # 477| "\x00\x00\x4e\x00\x03\x2d", 0x1e4a # 478| "\x00\x00\x6e\x00\x03\x2d", 0x1e4b Error: COMPILER_WARNING: [#def661] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:477:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 477 | "\x00\x00\x4e\x00\x03\x2d", 0x1e4a # | ^~~~~~~~~~~~~~~~~~~~ # 475| "\x00\x00\x4e\x00\x03\x31", 0x1e48 # 476| "\x00\x00\x6e\x00\x03\x31", 0x1e49 # 477|-> "\x00\x00\x4e\x00\x03\x2d", 0x1e4a # 478| "\x00\x00\x6e\x00\x03\x2d", 0x1e4b # 479| "\x00\x00\xd5\x00\x03\x01", 0x1e4c Error: COMPILER_WARNING: [#def662] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:478:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 478 | "\x00\x00\x6e\x00\x03\x2d", 0x1e4b # | ^~~~~~~~~~~~~~~~~~~~ # 476| "\x00\x00\x6e\x00\x03\x31", 0x1e49 # 477| "\x00\x00\x4e\x00\x03\x2d", 0x1e4a # 478|-> "\x00\x00\x6e\x00\x03\x2d", 0x1e4b # 479| "\x00\x00\xd5\x00\x03\x01", 0x1e4c # 480| "\x00\x00\xf5\x00\x03\x01", 0x1e4d Error: COMPILER_WARNING: [#def663] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:479:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 479 | "\x00\x00\xd5\x00\x03\x01", 0x1e4c # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 477| "\x00\x00\x4e\x00\x03\x2d", 0x1e4a # 478| "\x00\x00\x6e\x00\x03\x2d", 0x1e4b # 479|-> "\x00\x00\xd5\x00\x03\x01", 0x1e4c # 480| "\x00\x00\xf5\x00\x03\x01", 0x1e4d # 481| "\x00\x00\xd5\x00\x03\x08", 0x1e4e Error: COMPILER_WARNING: [#def664] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:480:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 480 | "\x00\x00\xf5\x00\x03\x01", 0x1e4d # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 478| "\x00\x00\x6e\x00\x03\x2d", 0x1e4b # 479| "\x00\x00\xd5\x00\x03\x01", 0x1e4c # 480|-> "\x00\x00\xf5\x00\x03\x01", 0x1e4d # 481| "\x00\x00\xd5\x00\x03\x08", 0x1e4e # 482| "\x00\x00\xf5\x00\x03\x08", 0x1e4f Error: COMPILER_WARNING: [#def665] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:481:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 481 | "\x00\x00\xd5\x00\x03\x08", 0x1e4e # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 479| "\x00\x00\xd5\x00\x03\x01", 0x1e4c # 480| "\x00\x00\xf5\x00\x03\x01", 0x1e4d # 481|-> "\x00\x00\xd5\x00\x03\x08", 0x1e4e # 482| "\x00\x00\xf5\x00\x03\x08", 0x1e4f # 483| "\x00\x01\x4c\x00\x03\x00", 0x1e50 Error: COMPILER_WARNING: [#def666] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:482:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 482 | "\x00\x00\xf5\x00\x03\x08", 0x1e4f # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 480| "\x00\x00\xf5\x00\x03\x01", 0x1e4d # 481| "\x00\x00\xd5\x00\x03\x08", 0x1e4e # 482|-> "\x00\x00\xf5\x00\x03\x08", 0x1e4f # 483| "\x00\x01\x4c\x00\x03\x00", 0x1e50 # 484| "\x00\x01\x4d\x00\x03\x00", 0x1e51 Error: COMPILER_WARNING: [#def667] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:483:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 483 | "\x00\x01\x4c\x00\x03\x00", 0x1e50 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 481| "\x00\x00\xd5\x00\x03\x08", 0x1e4e # 482| "\x00\x00\xf5\x00\x03\x08", 0x1e4f # 483|-> "\x00\x01\x4c\x00\x03\x00", 0x1e50 # 484| "\x00\x01\x4d\x00\x03\x00", 0x1e51 # 485| "\x00\x01\x4c\x00\x03\x01", 0x1e52 Error: COMPILER_WARNING: [#def668] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:484:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 484 | "\x00\x01\x4d\x00\x03\x00", 0x1e51 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 482| "\x00\x00\xf5\x00\x03\x08", 0x1e4f # 483| "\x00\x01\x4c\x00\x03\x00", 0x1e50 # 484|-> "\x00\x01\x4d\x00\x03\x00", 0x1e51 # 485| "\x00\x01\x4c\x00\x03\x01", 0x1e52 # 486| "\x00\x01\x4d\x00\x03\x01", 0x1e53 Error: COMPILER_WARNING: [#def669] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:485:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 485 | "\x00\x01\x4c\x00\x03\x01", 0x1e52 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 483| "\x00\x01\x4c\x00\x03\x00", 0x1e50 # 484| "\x00\x01\x4d\x00\x03\x00", 0x1e51 # 485|-> "\x00\x01\x4c\x00\x03\x01", 0x1e52 # 486| "\x00\x01\x4d\x00\x03\x01", 0x1e53 # 487| "\x00\x00\x50\x00\x03\x01", 0x1e54 Error: COMPILER_WARNING: [#def670] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:486:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 486 | "\x00\x01\x4d\x00\x03\x01", 0x1e53 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 484| "\x00\x01\x4d\x00\x03\x00", 0x1e51 # 485| "\x00\x01\x4c\x00\x03\x01", 0x1e52 # 486|-> "\x00\x01\x4d\x00\x03\x01", 0x1e53 # 487| "\x00\x00\x50\x00\x03\x01", 0x1e54 # 488| "\x00\x00\x70\x00\x03\x01", 0x1e55 Error: COMPILER_WARNING: [#def671] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:487:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 487 | "\x00\x00\x50\x00\x03\x01", 0x1e54 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 485| "\x00\x01\x4c\x00\x03\x01", 0x1e52 # 486| "\x00\x01\x4d\x00\x03\x01", 0x1e53 # 487|-> "\x00\x00\x50\x00\x03\x01", 0x1e54 # 488| "\x00\x00\x70\x00\x03\x01", 0x1e55 # 489| "\x00\x00\x50\x00\x03\x07", 0x1e56 Error: COMPILER_WARNING: [#def672] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:488:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 488 | "\x00\x00\x70\x00\x03\x01", 0x1e55 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 486| "\x00\x01\x4d\x00\x03\x01", 0x1e53 # 487| "\x00\x00\x50\x00\x03\x01", 0x1e54 # 488|-> "\x00\x00\x70\x00\x03\x01", 0x1e55 # 489| "\x00\x00\x50\x00\x03\x07", 0x1e56 # 490| "\x00\x00\x70\x00\x03\x07", 0x1e57 Error: COMPILER_WARNING: [#def673] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:489:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 489 | "\x00\x00\x50\x00\x03\x07", 0x1e56 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 487| "\x00\x00\x50\x00\x03\x01", 0x1e54 # 488| "\x00\x00\x70\x00\x03\x01", 0x1e55 # 489|-> "\x00\x00\x50\x00\x03\x07", 0x1e56 # 490| "\x00\x00\x70\x00\x03\x07", 0x1e57 # 491| "\x00\x00\x52\x00\x03\x07", 0x1e58 Error: COMPILER_WARNING: [#def674] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:490:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 490 | "\x00\x00\x70\x00\x03\x07", 0x1e57 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 488| "\x00\x00\x70\x00\x03\x01", 0x1e55 # 489| "\x00\x00\x50\x00\x03\x07", 0x1e56 # 490|-> "\x00\x00\x70\x00\x03\x07", 0x1e57 # 491| "\x00\x00\x52\x00\x03\x07", 0x1e58 # 492| "\x00\x00\x72\x00\x03\x07", 0x1e59 Error: COMPILER_WARNING: [#def675] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:491:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 491 | "\x00\x00\x52\x00\x03\x07", 0x1e58 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 489| "\x00\x00\x50\x00\x03\x07", 0x1e56 # 490| "\x00\x00\x70\x00\x03\x07", 0x1e57 # 491|-> "\x00\x00\x52\x00\x03\x07", 0x1e58 # 492| "\x00\x00\x72\x00\x03\x07", 0x1e59 # 493| "\x00\x00\x52\x00\x03\x23", 0x1e5a Error: COMPILER_WARNING: [#def676] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:492:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 492 | "\x00\x00\x72\x00\x03\x07", 0x1e59 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 490| "\x00\x00\x70\x00\x03\x07", 0x1e57 # 491| "\x00\x00\x52\x00\x03\x07", 0x1e58 # 492|-> "\x00\x00\x72\x00\x03\x07", 0x1e59 # 493| "\x00\x00\x52\x00\x03\x23", 0x1e5a # 494| "\x00\x00\x72\x00\x03\x23", 0x1e5b Error: COMPILER_WARNING: [#def677] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:493:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 493 | "\x00\x00\x52\x00\x03\x23", 0x1e5a # | ^~~~~~~~~~~~~~~~~~~~ # 491| "\x00\x00\x52\x00\x03\x07", 0x1e58 # 492| "\x00\x00\x72\x00\x03\x07", 0x1e59 # 493|-> "\x00\x00\x52\x00\x03\x23", 0x1e5a # 494| "\x00\x00\x72\x00\x03\x23", 0x1e5b # 495| "\x00\x1e\x5a\x00\x03\x04", 0x1e5c Error: COMPILER_WARNING: [#def678] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:494:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 494 | "\x00\x00\x72\x00\x03\x23", 0x1e5b # | ^~~~~~~~~~~~~~~~~~~~ # 492| "\x00\x00\x72\x00\x03\x07", 0x1e59 # 493| "\x00\x00\x52\x00\x03\x23", 0x1e5a # 494|-> "\x00\x00\x72\x00\x03\x23", 0x1e5b # 495| "\x00\x1e\x5a\x00\x03\x04", 0x1e5c # 496| "\x00\x1e\x5b\x00\x03\x04", 0x1e5d Error: COMPILER_WARNING: [#def679] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:495:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 495 | "\x00\x1e\x5a\x00\x03\x04", 0x1e5c # | ^~~~~~~~~~~~~~~~~~~~~~~ # 493| "\x00\x00\x52\x00\x03\x23", 0x1e5a # 494| "\x00\x00\x72\x00\x03\x23", 0x1e5b # 495|-> "\x00\x1e\x5a\x00\x03\x04", 0x1e5c # 496| "\x00\x1e\x5b\x00\x03\x04", 0x1e5d # 497| "\x00\x00\x52\x00\x03\x31", 0x1e5e Error: COMPILER_WARNING: [#def680] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:496:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 496 | "\x00\x1e\x5b\x00\x03\x04", 0x1e5d # | ^~~~~~~~~~~~~~~~~~~~~~~ # 494| "\x00\x00\x72\x00\x03\x23", 0x1e5b # 495| "\x00\x1e\x5a\x00\x03\x04", 0x1e5c # 496|-> "\x00\x1e\x5b\x00\x03\x04", 0x1e5d # 497| "\x00\x00\x52\x00\x03\x31", 0x1e5e # 498| "\x00\x00\x72\x00\x03\x31", 0x1e5f Error: COMPILER_WARNING: [#def681] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:497:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 497 | "\x00\x00\x52\x00\x03\x31", 0x1e5e # | ^~~~~~~~~~~~~~~~~~~~ # 495| "\x00\x1e\x5a\x00\x03\x04", 0x1e5c # 496| "\x00\x1e\x5b\x00\x03\x04", 0x1e5d # 497|-> "\x00\x00\x52\x00\x03\x31", 0x1e5e # 498| "\x00\x00\x72\x00\x03\x31", 0x1e5f # 499| "\x00\x00\x53\x00\x03\x07", 0x1e60 Error: COMPILER_WARNING: [#def682] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:498:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 498 | "\x00\x00\x72\x00\x03\x31", 0x1e5f # | ^~~~~~~~~~~~~~~~~~~~ # 496| "\x00\x1e\x5b\x00\x03\x04", 0x1e5d # 497| "\x00\x00\x52\x00\x03\x31", 0x1e5e # 498|-> "\x00\x00\x72\x00\x03\x31", 0x1e5f # 499| "\x00\x00\x53\x00\x03\x07", 0x1e60 # 500| "\x00\x00\x73\x00\x03\x07", 0x1e61 Error: COMPILER_WARNING: [#def683] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:499:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 499 | "\x00\x00\x53\x00\x03\x07", 0x1e60 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 497| "\x00\x00\x52\x00\x03\x31", 0x1e5e # 498| "\x00\x00\x72\x00\x03\x31", 0x1e5f # 499|-> "\x00\x00\x53\x00\x03\x07", 0x1e60 # 500| "\x00\x00\x73\x00\x03\x07", 0x1e61 # 501| "\x00\x00\x53\x00\x03\x23", 0x1e62 Error: COMPILER_WARNING: [#def684] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:500:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 500 | "\x00\x00\x73\x00\x03\x07", 0x1e61 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 498| "\x00\x00\x72\x00\x03\x31", 0x1e5f # 499| "\x00\x00\x53\x00\x03\x07", 0x1e60 # 500|-> "\x00\x00\x73\x00\x03\x07", 0x1e61 # 501| "\x00\x00\x53\x00\x03\x23", 0x1e62 # 502| "\x00\x00\x73\x00\x03\x23", 0x1e63 Error: COMPILER_WARNING: [#def685] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:501:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 501 | "\x00\x00\x53\x00\x03\x23", 0x1e62 # | ^~~~~~~~~~~~~~~~~~~~ # 499| "\x00\x00\x53\x00\x03\x07", 0x1e60 # 500| "\x00\x00\x73\x00\x03\x07", 0x1e61 # 501|-> "\x00\x00\x53\x00\x03\x23", 0x1e62 # 502| "\x00\x00\x73\x00\x03\x23", 0x1e63 # 503| "\x00\x01\x5a\x00\x03\x07", 0x1e64 Error: COMPILER_WARNING: [#def686] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:502:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 502 | "\x00\x00\x73\x00\x03\x23", 0x1e63 # | ^~~~~~~~~~~~~~~~~~~~ # 500| "\x00\x00\x73\x00\x03\x07", 0x1e61 # 501| "\x00\x00\x53\x00\x03\x23", 0x1e62 # 502|-> "\x00\x00\x73\x00\x03\x23", 0x1e63 # 503| "\x00\x01\x5a\x00\x03\x07", 0x1e64 # 504| "\x00\x01\x5b\x00\x03\x07", 0x1e65 Error: COMPILER_WARNING: [#def687] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:503:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 503 | "\x00\x01\x5a\x00\x03\x07", 0x1e64 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 501| "\x00\x00\x53\x00\x03\x23", 0x1e62 # 502| "\x00\x00\x73\x00\x03\x23", 0x1e63 # 503|-> "\x00\x01\x5a\x00\x03\x07", 0x1e64 # 504| "\x00\x01\x5b\x00\x03\x07", 0x1e65 # 505| "\x00\x01\x60\x00\x03\x07", 0x1e66 Error: COMPILER_WARNING: [#def688] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:504:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 504 | "\x00\x01\x5b\x00\x03\x07", 0x1e65 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 502| "\x00\x00\x73\x00\x03\x23", 0x1e63 # 503| "\x00\x01\x5a\x00\x03\x07", 0x1e64 # 504|-> "\x00\x01\x5b\x00\x03\x07", 0x1e65 # 505| "\x00\x01\x60\x00\x03\x07", 0x1e66 # 506| "\x00\x01\x61\x00\x03\x07", 0x1e67 Error: COMPILER_WARNING: [#def689] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:505:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 505 | "\x00\x01\x60\x00\x03\x07", 0x1e66 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 503| "\x00\x01\x5a\x00\x03\x07", 0x1e64 # 504| "\x00\x01\x5b\x00\x03\x07", 0x1e65 # 505|-> "\x00\x01\x60\x00\x03\x07", 0x1e66 # 506| "\x00\x01\x61\x00\x03\x07", 0x1e67 # 507| "\x00\x1e\x62\x00\x03\x07", 0x1e68 Error: COMPILER_WARNING: [#def690] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:506:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 506 | "\x00\x01\x61\x00\x03\x07", 0x1e67 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 504| "\x00\x01\x5b\x00\x03\x07", 0x1e65 # 505| "\x00\x01\x60\x00\x03\x07", 0x1e66 # 506|-> "\x00\x01\x61\x00\x03\x07", 0x1e67 # 507| "\x00\x1e\x62\x00\x03\x07", 0x1e68 # 508| "\x00\x1e\x63\x00\x03\x07", 0x1e69 Error: COMPILER_WARNING: [#def691] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:507:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 507 | "\x00\x1e\x62\x00\x03\x07", 0x1e68 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 505| "\x00\x01\x60\x00\x03\x07", 0x1e66 # 506| "\x00\x01\x61\x00\x03\x07", 0x1e67 # 507|-> "\x00\x1e\x62\x00\x03\x07", 0x1e68 # 508| "\x00\x1e\x63\x00\x03\x07", 0x1e69 # 509| "\x00\x00\x54\x00\x03\x07", 0x1e6a Error: COMPILER_WARNING (CWE-909): [#def692] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:508:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 508 | "\x00\x1e\x63\x00\x03\x07", 0x1e69 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 506| "\x00\x01\x61\x00\x03\x07", 0x1e67 # 507| "\x00\x1e\x62\x00\x03\x07", 0x1e68 # 508|-> "\x00\x1e\x63\x00\x03\x07", 0x1e69 # 509| "\x00\x00\x54\x00\x03\x07", 0x1e6a # 510| "\x00\x00\x74\x00\x03\x07", 0x1e6b Error: COMPILER_WARNING: [#def693] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:508:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 508 | "\x00\x1e\x63\x00\x03\x07", 0x1e69 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 506| "\x00\x01\x61\x00\x03\x07", 0x1e67 # 507| "\x00\x1e\x62\x00\x03\x07", 0x1e68 # 508|-> "\x00\x1e\x63\x00\x03\x07", 0x1e69 # 509| "\x00\x00\x54\x00\x03\x07", 0x1e6a # 510| "\x00\x00\x74\x00\x03\x07", 0x1e6b Error: COMPILER_WARNING: [#def694] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:509:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 509 | "\x00\x00\x54\x00\x03\x07", 0x1e6a # | ^~~~~~~~~~~~~~~~~~~~~~~ # 507| "\x00\x1e\x62\x00\x03\x07", 0x1e68 # 508| "\x00\x1e\x63\x00\x03\x07", 0x1e69 # 509|-> "\x00\x00\x54\x00\x03\x07", 0x1e6a # 510| "\x00\x00\x74\x00\x03\x07", 0x1e6b # 511| "\x00\x00\x54\x00\x03\x23", 0x1e6c Error: COMPILER_WARNING: [#def695] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:510:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 510 | "\x00\x00\x74\x00\x03\x07", 0x1e6b # | ^~~~~~~~~~~~~~~~~~~~~~~ # 508| "\x00\x1e\x63\x00\x03\x07", 0x1e69 # 509| "\x00\x00\x54\x00\x03\x07", 0x1e6a # 510|-> "\x00\x00\x74\x00\x03\x07", 0x1e6b # 511| "\x00\x00\x54\x00\x03\x23", 0x1e6c # 512| "\x00\x00\x74\x00\x03\x23", 0x1e6d Error: COMPILER_WARNING: [#def696] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:511:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 511 | "\x00\x00\x54\x00\x03\x23", 0x1e6c # | ^~~~~~~~~~~~~~~~~~~~ # 509| "\x00\x00\x54\x00\x03\x07", 0x1e6a # 510| "\x00\x00\x74\x00\x03\x07", 0x1e6b # 511|-> "\x00\x00\x54\x00\x03\x23", 0x1e6c # 512| "\x00\x00\x74\x00\x03\x23", 0x1e6d # 513| "\x00\x00\x54\x00\x03\x31", 0x1e6e Error: COMPILER_WARNING: [#def697] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:512:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 512 | "\x00\x00\x74\x00\x03\x23", 0x1e6d # | ^~~~~~~~~~~~~~~~~~~~ # 510| "\x00\x00\x74\x00\x03\x07", 0x1e6b # 511| "\x00\x00\x54\x00\x03\x23", 0x1e6c # 512|-> "\x00\x00\x74\x00\x03\x23", 0x1e6d # 513| "\x00\x00\x54\x00\x03\x31", 0x1e6e # 514| "\x00\x00\x74\x00\x03\x31", 0x1e6f Error: COMPILER_WARNING: [#def698] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:513:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 513 | "\x00\x00\x54\x00\x03\x31", 0x1e6e # | ^~~~~~~~~~~~~~~~~~~~ # 511| "\x00\x00\x54\x00\x03\x23", 0x1e6c # 512| "\x00\x00\x74\x00\x03\x23", 0x1e6d # 513|-> "\x00\x00\x54\x00\x03\x31", 0x1e6e # 514| "\x00\x00\x74\x00\x03\x31", 0x1e6f # 515| "\x00\x00\x54\x00\x03\x2d", 0x1e70 Error: COMPILER_WARNING: [#def699] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:514:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 514 | "\x00\x00\x74\x00\x03\x31", 0x1e6f # | ^~~~~~~~~~~~~~~~~~~~ # 512| "\x00\x00\x74\x00\x03\x23", 0x1e6d # 513| "\x00\x00\x54\x00\x03\x31", 0x1e6e # 514|-> "\x00\x00\x74\x00\x03\x31", 0x1e6f # 515| "\x00\x00\x54\x00\x03\x2d", 0x1e70 # 516| "\x00\x00\x74\x00\x03\x2d", 0x1e71 Error: COMPILER_WARNING: [#def700] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:515:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 515 | "\x00\x00\x54\x00\x03\x2d", 0x1e70 # | ^~~~~~~~~~~~~~~~~~~~ # 513| "\x00\x00\x54\x00\x03\x31", 0x1e6e # 514| "\x00\x00\x74\x00\x03\x31", 0x1e6f # 515|-> "\x00\x00\x54\x00\x03\x2d", 0x1e70 # 516| "\x00\x00\x74\x00\x03\x2d", 0x1e71 # 517| "\x00\x00\x55\x00\x03\x24", 0x1e72 Error: COMPILER_WARNING: [#def701] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:516:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 516 | "\x00\x00\x74\x00\x03\x2d", 0x1e71 # | ^~~~~~~~~~~~~~~~~~~~ # 514| "\x00\x00\x74\x00\x03\x31", 0x1e6f # 515| "\x00\x00\x54\x00\x03\x2d", 0x1e70 # 516|-> "\x00\x00\x74\x00\x03\x2d", 0x1e71 # 517| "\x00\x00\x55\x00\x03\x24", 0x1e72 # 518| "\x00\x00\x75\x00\x03\x24", 0x1e73 Error: COMPILER_WARNING: [#def702] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:517:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 517 | "\x00\x00\x55\x00\x03\x24", 0x1e72 # | ^~~~~~~~~~~~~~~~~~~~ # 515| "\x00\x00\x54\x00\x03\x2d", 0x1e70 # 516| "\x00\x00\x74\x00\x03\x2d", 0x1e71 # 517|-> "\x00\x00\x55\x00\x03\x24", 0x1e72 # 518| "\x00\x00\x75\x00\x03\x24", 0x1e73 # 519| "\x00\x00\x55\x00\x03\x30", 0x1e74 Error: COMPILER_WARNING: [#def703] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:518:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 518 | "\x00\x00\x75\x00\x03\x24", 0x1e73 # | ^~~~~~~~~~~~~~~~~~~~ # 516| "\x00\x00\x74\x00\x03\x2d", 0x1e71 # 517| "\x00\x00\x55\x00\x03\x24", 0x1e72 # 518|-> "\x00\x00\x75\x00\x03\x24", 0x1e73 # 519| "\x00\x00\x55\x00\x03\x30", 0x1e74 # 520| "\x00\x00\x75\x00\x03\x30", 0x1e75 Error: COMPILER_WARNING: [#def704] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:519:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 519 | "\x00\x00\x55\x00\x03\x30", 0x1e74 # | ^~~~~~~~~~~~~~~~~~~~ # 517| "\x00\x00\x55\x00\x03\x24", 0x1e72 # 518| "\x00\x00\x75\x00\x03\x24", 0x1e73 # 519|-> "\x00\x00\x55\x00\x03\x30", 0x1e74 # 520| "\x00\x00\x75\x00\x03\x30", 0x1e75 # 521| "\x00\x00\x55\x00\x03\x2d", 0x1e76 Error: COMPILER_WARNING: [#def705] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:520:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 520 | "\x00\x00\x75\x00\x03\x30", 0x1e75 # | ^~~~~~~~~~~~~~~~~~~~ # 518| "\x00\x00\x75\x00\x03\x24", 0x1e73 # 519| "\x00\x00\x55\x00\x03\x30", 0x1e74 # 520|-> "\x00\x00\x75\x00\x03\x30", 0x1e75 # 521| "\x00\x00\x55\x00\x03\x2d", 0x1e76 # 522| "\x00\x00\x75\x00\x03\x2d", 0x1e77 Error: COMPILER_WARNING: [#def706] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:521:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 521 | "\x00\x00\x55\x00\x03\x2d", 0x1e76 # | ^~~~~~~~~~~~~~~~~~~~ # 519| "\x00\x00\x55\x00\x03\x30", 0x1e74 # 520| "\x00\x00\x75\x00\x03\x30", 0x1e75 # 521|-> "\x00\x00\x55\x00\x03\x2d", 0x1e76 # 522| "\x00\x00\x75\x00\x03\x2d", 0x1e77 # 523| "\x00\x01\x68\x00\x03\x01", 0x1e78 Error: COMPILER_WARNING: [#def707] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:522:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 522 | "\x00\x00\x75\x00\x03\x2d", 0x1e77 # | ^~~~~~~~~~~~~~~~~~~~ # 520| "\x00\x00\x75\x00\x03\x30", 0x1e75 # 521| "\x00\x00\x55\x00\x03\x2d", 0x1e76 # 522|-> "\x00\x00\x75\x00\x03\x2d", 0x1e77 # 523| "\x00\x01\x68\x00\x03\x01", 0x1e78 # 524| "\x00\x01\x69\x00\x03\x01", 0x1e79 Error: COMPILER_WARNING: [#def708] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:523:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 523 | "\x00\x01\x68\x00\x03\x01", 0x1e78 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 521| "\x00\x00\x55\x00\x03\x2d", 0x1e76 # 522| "\x00\x00\x75\x00\x03\x2d", 0x1e77 # 523|-> "\x00\x01\x68\x00\x03\x01", 0x1e78 # 524| "\x00\x01\x69\x00\x03\x01", 0x1e79 # 525| "\x00\x01\x6a\x00\x03\x08", 0x1e7a Error: COMPILER_WARNING: [#def709] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:524:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 524 | "\x00\x01\x69\x00\x03\x01", 0x1e79 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 522| "\x00\x00\x75\x00\x03\x2d", 0x1e77 # 523| "\x00\x01\x68\x00\x03\x01", 0x1e78 # 524|-> "\x00\x01\x69\x00\x03\x01", 0x1e79 # 525| "\x00\x01\x6a\x00\x03\x08", 0x1e7a # 526| "\x00\x01\x6b\x00\x03\x08", 0x1e7b Error: COMPILER_WARNING: [#def710] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:525:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 525 | "\x00\x01\x6a\x00\x03\x08", 0x1e7a # | ^~~~~~~~~~~~~~~~~~~~~~~ # 523| "\x00\x01\x68\x00\x03\x01", 0x1e78 # 524| "\x00\x01\x69\x00\x03\x01", 0x1e79 # 525|-> "\x00\x01\x6a\x00\x03\x08", 0x1e7a # 526| "\x00\x01\x6b\x00\x03\x08", 0x1e7b # 527| "\x00\x00\x56\x00\x03\x03", 0x1e7c Error: COMPILER_WARNING: [#def711] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:526:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 526 | "\x00\x01\x6b\x00\x03\x08", 0x1e7b # | ^~~~~~~~~~~~~~~~~~~~~~~ # 524| "\x00\x01\x69\x00\x03\x01", 0x1e79 # 525| "\x00\x01\x6a\x00\x03\x08", 0x1e7a # 526|-> "\x00\x01\x6b\x00\x03\x08", 0x1e7b # 527| "\x00\x00\x56\x00\x03\x03", 0x1e7c # 528| "\x00\x00\x76\x00\x03\x03", 0x1e7d Error: COMPILER_WARNING: [#def712] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:527:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 527 | "\x00\x00\x56\x00\x03\x03", 0x1e7c # | ^~~~~~~~~~~~~~~~~~~~~~~ # 525| "\x00\x01\x6a\x00\x03\x08", 0x1e7a # 526| "\x00\x01\x6b\x00\x03\x08", 0x1e7b # 527|-> "\x00\x00\x56\x00\x03\x03", 0x1e7c # 528| "\x00\x00\x76\x00\x03\x03", 0x1e7d # 529| "\x00\x00\x56\x00\x03\x23", 0x1e7e Error: COMPILER_WARNING: [#def713] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:528:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 528 | "\x00\x00\x76\x00\x03\x03", 0x1e7d # | ^~~~~~~~~~~~~~~~~~~~~~~ # 526| "\x00\x01\x6b\x00\x03\x08", 0x1e7b # 527| "\x00\x00\x56\x00\x03\x03", 0x1e7c # 528|-> "\x00\x00\x76\x00\x03\x03", 0x1e7d # 529| "\x00\x00\x56\x00\x03\x23", 0x1e7e # 530| "\x00\x00\x76\x00\x03\x23", 0x1e7f Error: COMPILER_WARNING (CWE-909): [#def714] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:530:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 530 | "\x00\x00\x76\x00\x03\x23", 0x1e7f # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 528| "\x00\x00\x76\x00\x03\x03", 0x1e7d # 529| "\x00\x00\x56\x00\x03\x23", 0x1e7e # 530|-> "\x00\x00\x76\x00\x03\x23", 0x1e7f # 531| "\x00\x00\x57\x00\x03\x00", 0x1e80 # 532| "\x00\x00\x77\x00\x03\x00", 0x1e81 Error: COMPILER_WARNING: [#def715] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:530:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 530 | "\x00\x00\x76\x00\x03\x23", 0x1e7f # | ^~~~~~~~~~~~~~~~~~~~ # 528| "\x00\x00\x76\x00\x03\x03", 0x1e7d # 529| "\x00\x00\x56\x00\x03\x23", 0x1e7e # 530|-> "\x00\x00\x76\x00\x03\x23", 0x1e7f # 531| "\x00\x00\x57\x00\x03\x00", 0x1e80 # 532| "\x00\x00\x77\x00\x03\x00", 0x1e81 Error: COMPILER_WARNING: [#def716] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:531:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 531 | "\x00\x00\x57\x00\x03\x00", 0x1e80 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 529| "\x00\x00\x56\x00\x03\x23", 0x1e7e # 530| "\x00\x00\x76\x00\x03\x23", 0x1e7f # 531|-> "\x00\x00\x57\x00\x03\x00", 0x1e80 # 532| "\x00\x00\x77\x00\x03\x00", 0x1e81 # 533| "\x00\x00\x57\x00\x03\x01", 0x1e82 Error: COMPILER_WARNING: [#def717] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:532:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 532 | "\x00\x00\x77\x00\x03\x00", 0x1e81 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 530| "\x00\x00\x76\x00\x03\x23", 0x1e7f # 531| "\x00\x00\x57\x00\x03\x00", 0x1e80 # 532|-> "\x00\x00\x77\x00\x03\x00", 0x1e81 # 533| "\x00\x00\x57\x00\x03\x01", 0x1e82 # 534| "\x00\x00\x77\x00\x03\x01", 0x1e83 Error: COMPILER_WARNING: [#def718] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:533:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 533 | "\x00\x00\x57\x00\x03\x01", 0x1e82 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 531| "\x00\x00\x57\x00\x03\x00", 0x1e80 # 532| "\x00\x00\x77\x00\x03\x00", 0x1e81 # 533|-> "\x00\x00\x57\x00\x03\x01", 0x1e82 # 534| "\x00\x00\x77\x00\x03\x01", 0x1e83 # 535| "\x00\x00\x57\x00\x03\x08", 0x1e84 Error: COMPILER_WARNING: [#def719] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:534:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 534 | "\x00\x00\x77\x00\x03\x01", 0x1e83 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 532| "\x00\x00\x77\x00\x03\x00", 0x1e81 # 533| "\x00\x00\x57\x00\x03\x01", 0x1e82 # 534|-> "\x00\x00\x77\x00\x03\x01", 0x1e83 # 535| "\x00\x00\x57\x00\x03\x08", 0x1e84 # 536| "\x00\x00\x77\x00\x03\x08", 0x1e85 Error: COMPILER_WARNING: [#def720] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:535:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 535 | "\x00\x00\x57\x00\x03\x08", 0x1e84 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 533| "\x00\x00\x57\x00\x03\x01", 0x1e82 # 534| "\x00\x00\x77\x00\x03\x01", 0x1e83 # 535|-> "\x00\x00\x57\x00\x03\x08", 0x1e84 # 536| "\x00\x00\x77\x00\x03\x08", 0x1e85 # 537| "\x00\x00\x57\x00\x03\x07", 0x1e86 Error: COMPILER_WARNING: [#def721] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:536:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 536 | "\x00\x00\x77\x00\x03\x08", 0x1e85 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 534| "\x00\x00\x77\x00\x03\x01", 0x1e83 # 535| "\x00\x00\x57\x00\x03\x08", 0x1e84 # 536|-> "\x00\x00\x77\x00\x03\x08", 0x1e85 # 537| "\x00\x00\x57\x00\x03\x07", 0x1e86 # 538| "\x00\x00\x77\x00\x03\x07", 0x1e87 Error: COMPILER_WARNING: [#def722] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:537:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 537 | "\x00\x00\x57\x00\x03\x07", 0x1e86 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 535| "\x00\x00\x57\x00\x03\x08", 0x1e84 # 536| "\x00\x00\x77\x00\x03\x08", 0x1e85 # 537|-> "\x00\x00\x57\x00\x03\x07", 0x1e86 # 538| "\x00\x00\x77\x00\x03\x07", 0x1e87 # 539| "\x00\x00\x57\x00\x03\x23", 0x1e88 Error: COMPILER_WARNING: [#def723] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:538:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 538 | "\x00\x00\x77\x00\x03\x07", 0x1e87 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 536| "\x00\x00\x77\x00\x03\x08", 0x1e85 # 537| "\x00\x00\x57\x00\x03\x07", 0x1e86 # 538|-> "\x00\x00\x77\x00\x03\x07", 0x1e87 # 539| "\x00\x00\x57\x00\x03\x23", 0x1e88 # 540| "\x00\x00\x77\x00\x03\x23", 0x1e89 Error: COMPILER_WARNING: [#def724] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:539:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 539 | "\x00\x00\x57\x00\x03\x23", 0x1e88 # | ^~~~~~~~~~~~~~~~~~~~ # 537| "\x00\x00\x57\x00\x03\x07", 0x1e86 # 538| "\x00\x00\x77\x00\x03\x07", 0x1e87 # 539|-> "\x00\x00\x57\x00\x03\x23", 0x1e88 # 540| "\x00\x00\x77\x00\x03\x23", 0x1e89 # 541| "\x00\x00\x58\x00\x03\x07", 0x1e8a Error: COMPILER_WARNING: [#def725] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:540:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 540 | "\x00\x00\x77\x00\x03\x23", 0x1e89 # | ^~~~~~~~~~~~~~~~~~~~ # 538| "\x00\x00\x77\x00\x03\x07", 0x1e87 # 539| "\x00\x00\x57\x00\x03\x23", 0x1e88 # 540|-> "\x00\x00\x77\x00\x03\x23", 0x1e89 # 541| "\x00\x00\x58\x00\x03\x07", 0x1e8a # 542| "\x00\x00\x78\x00\x03\x07", 0x1e8b Error: COMPILER_WARNING: [#def726] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:541:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 541 | "\x00\x00\x58\x00\x03\x07", 0x1e8a # | ^~~~~~~~~~~~~~~~~~~~~~~ # 539| "\x00\x00\x57\x00\x03\x23", 0x1e88 # 540| "\x00\x00\x77\x00\x03\x23", 0x1e89 # 541|-> "\x00\x00\x58\x00\x03\x07", 0x1e8a # 542| "\x00\x00\x78\x00\x03\x07", 0x1e8b # 543| "\x00\x00\x58\x00\x03\x08", 0x1e8c Error: COMPILER_WARNING: [#def727] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:542:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 542 | "\x00\x00\x78\x00\x03\x07", 0x1e8b # | ^~~~~~~~~~~~~~~~~~~~~~~ # 540| "\x00\x00\x77\x00\x03\x23", 0x1e89 # 541| "\x00\x00\x58\x00\x03\x07", 0x1e8a # 542|-> "\x00\x00\x78\x00\x03\x07", 0x1e8b # 543| "\x00\x00\x58\x00\x03\x08", 0x1e8c # 544| "\x00\x00\x78\x00\x03\x08", 0x1e8d Error: COMPILER_WARNING: [#def728] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:543:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 543 | "\x00\x00\x58\x00\x03\x08", 0x1e8c # | ^~~~~~~~~~~~~~~~~~~~~~~ # 541| "\x00\x00\x58\x00\x03\x07", 0x1e8a # 542| "\x00\x00\x78\x00\x03\x07", 0x1e8b # 543|-> "\x00\x00\x58\x00\x03\x08", 0x1e8c # 544| "\x00\x00\x78\x00\x03\x08", 0x1e8d # 545| "\x00\x00\x59\x00\x03\x07", 0x1e8e Error: COMPILER_WARNING: [#def729] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:544:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 544 | "\x00\x00\x78\x00\x03\x08", 0x1e8d # | ^~~~~~~~~~~~~~~~~~~~~~~ # 542| "\x00\x00\x78\x00\x03\x07", 0x1e8b # 543| "\x00\x00\x58\x00\x03\x08", 0x1e8c # 544|-> "\x00\x00\x78\x00\x03\x08", 0x1e8d # 545| "\x00\x00\x59\x00\x03\x07", 0x1e8e # 546| "\x00\x00\x79\x00\x03\x07", 0x1e8f Error: COMPILER_WARNING: [#def730] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:545:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 545 | "\x00\x00\x59\x00\x03\x07", 0x1e8e # | ^~~~~~~~~~~~~~~~~~~~~~~ # 543| "\x00\x00\x58\x00\x03\x08", 0x1e8c # 544| "\x00\x00\x78\x00\x03\x08", 0x1e8d # 545|-> "\x00\x00\x59\x00\x03\x07", 0x1e8e # 546| "\x00\x00\x79\x00\x03\x07", 0x1e8f # 547| "\x00\x00\x5a\x00\x03\x02", 0x1e90 Error: COMPILER_WARNING: [#def731] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:546:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 546 | "\x00\x00\x79\x00\x03\x07", 0x1e8f # | ^~~~~~~~~~~~~~~~~~~~~~~ # 544| "\x00\x00\x78\x00\x03\x08", 0x1e8d # 545| "\x00\x00\x59\x00\x03\x07", 0x1e8e # 546|-> "\x00\x00\x79\x00\x03\x07", 0x1e8f # 547| "\x00\x00\x5a\x00\x03\x02", 0x1e90 # 548| "\x00\x00\x7a\x00\x03\x02", 0x1e91 Error: COMPILER_WARNING: [#def732] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:547:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 547 | "\x00\x00\x5a\x00\x03\x02", 0x1e90 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 545| "\x00\x00\x59\x00\x03\x07", 0x1e8e # 546| "\x00\x00\x79\x00\x03\x07", 0x1e8f # 547|-> "\x00\x00\x5a\x00\x03\x02", 0x1e90 # 548| "\x00\x00\x7a\x00\x03\x02", 0x1e91 # 549| "\x00\x00\x5a\x00\x03\x23", 0x1e92 Error: COMPILER_WARNING: [#def733] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:548:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 548 | "\x00\x00\x7a\x00\x03\x02", 0x1e91 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 546| "\x00\x00\x79\x00\x03\x07", 0x1e8f # 547| "\x00\x00\x5a\x00\x03\x02", 0x1e90 # 548|-> "\x00\x00\x7a\x00\x03\x02", 0x1e91 # 549| "\x00\x00\x5a\x00\x03\x23", 0x1e92 # 550| "\x00\x00\x7a\x00\x03\x23", 0x1e93 Error: COMPILER_WARNING: [#def734] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:549:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 549 | "\x00\x00\x5a\x00\x03\x23", 0x1e92 # | ^~~~~~~~~~~~~~~~~~~~ # 547| "\x00\x00\x5a\x00\x03\x02", 0x1e90 # 548| "\x00\x00\x7a\x00\x03\x02", 0x1e91 # 549|-> "\x00\x00\x5a\x00\x03\x23", 0x1e92 # 550| "\x00\x00\x7a\x00\x03\x23", 0x1e93 # 551| "\x00\x00\x5a\x00\x03\x31", 0x1e94 Error: COMPILER_WARNING: [#def735] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:550:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 550 | "\x00\x00\x7a\x00\x03\x23", 0x1e93 # | ^~~~~~~~~~~~~~~~~~~~ # 548| "\x00\x00\x7a\x00\x03\x02", 0x1e91 # 549| "\x00\x00\x5a\x00\x03\x23", 0x1e92 # 550|-> "\x00\x00\x7a\x00\x03\x23", 0x1e93 # 551| "\x00\x00\x5a\x00\x03\x31", 0x1e94 # 552| "\x00\x00\x7a\x00\x03\x31", 0x1e95 Error: COMPILER_WARNING: [#def736] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:551:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 551 | "\x00\x00\x5a\x00\x03\x31", 0x1e94 # | ^~~~~~~~~~~~~~~~~~~~ # 549| "\x00\x00\x5a\x00\x03\x23", 0x1e92 # 550| "\x00\x00\x7a\x00\x03\x23", 0x1e93 # 551|-> "\x00\x00\x5a\x00\x03\x31", 0x1e94 # 552| "\x00\x00\x7a\x00\x03\x31", 0x1e95 # 553| "\x00\x00\x68\x00\x03\x31", 0x1e96 Error: COMPILER_WARNING: [#def737] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:552:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 552 | "\x00\x00\x7a\x00\x03\x31", 0x1e95 # | ^~~~~~~~~~~~~~~~~~~~ # 550| "\x00\x00\x7a\x00\x03\x23", 0x1e93 # 551| "\x00\x00\x5a\x00\x03\x31", 0x1e94 # 552|-> "\x00\x00\x7a\x00\x03\x31", 0x1e95 # 553| "\x00\x00\x68\x00\x03\x31", 0x1e96 # 554| "\x00\x00\x74\x00\x03\x08", 0x1e97 Error: COMPILER_WARNING: [#def738] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:553:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 553 | "\x00\x00\x68\x00\x03\x31", 0x1e96 # | ^~~~~~~~~~~~~~~~~~~~ # 551| "\x00\x00\x5a\x00\x03\x31", 0x1e94 # 552| "\x00\x00\x7a\x00\x03\x31", 0x1e95 # 553|-> "\x00\x00\x68\x00\x03\x31", 0x1e96 # 554| "\x00\x00\x74\x00\x03\x08", 0x1e97 # 555| "\x00\x00\x77\x00\x03\x0a", 0x1e98 Error: COMPILER_WARNING: [#def739] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:554:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 554 | "\x00\x00\x74\x00\x03\x08", 0x1e97 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 552| "\x00\x00\x7a\x00\x03\x31", 0x1e95 # 553| "\x00\x00\x68\x00\x03\x31", 0x1e96 # 554|-> "\x00\x00\x74\x00\x03\x08", 0x1e97 # 555| "\x00\x00\x77\x00\x03\x0a", 0x1e98 # 556| "\x00\x00\x79\x00\x03\x0a", 0x1e99 Error: COMPILER_WARNING: [#def740] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:555:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 555 | "\x00\x00\x77\x00\x03\x0a", 0x1e98 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 553| "\x00\x00\x68\x00\x03\x31", 0x1e96 # 554| "\x00\x00\x74\x00\x03\x08", 0x1e97 # 555|-> "\x00\x00\x77\x00\x03\x0a", 0x1e98 # 556| "\x00\x00\x79\x00\x03\x0a", 0x1e99 # 557| "\x00\x01\x7f\x00\x03\x07", 0x1e9b Error: COMPILER_WARNING: [#def741] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:556:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 556 | "\x00\x00\x79\x00\x03\x0a", 0x1e99 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 554| "\x00\x00\x74\x00\x03\x08", 0x1e97 # 555| "\x00\x00\x77\x00\x03\x0a", 0x1e98 # 556|-> "\x00\x00\x79\x00\x03\x0a", 0x1e99 # 557| "\x00\x01\x7f\x00\x03\x07", 0x1e9b # 558| "\x00\x00\x41\x00\x03\x23", 0x1ea0 Error: COMPILER_WARNING: [#def742] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:557:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 557 | "\x00\x01\x7f\x00\x03\x07", 0x1e9b # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 555| "\x00\x00\x77\x00\x03\x0a", 0x1e98 # 556| "\x00\x00\x79\x00\x03\x0a", 0x1e99 # 557|-> "\x00\x01\x7f\x00\x03\x07", 0x1e9b # 558| "\x00\x00\x41\x00\x03\x23", 0x1ea0 # 559| "\x00\x00\x61\x00\x03\x23", 0x1ea1 Error: COMPILER_WARNING: [#def743] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:558:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 558 | "\x00\x00\x41\x00\x03\x23", 0x1ea0 # | ^~~~~~~~~~~~~~~~~~~~ # 556| "\x00\x00\x79\x00\x03\x0a", 0x1e99 # 557| "\x00\x01\x7f\x00\x03\x07", 0x1e9b # 558|-> "\x00\x00\x41\x00\x03\x23", 0x1ea0 # 559| "\x00\x00\x61\x00\x03\x23", 0x1ea1 # 560| "\x00\x00\x41\x00\x03\x09", 0x1ea2 Error: COMPILER_WARNING: [#def744] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:559:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 559 | "\x00\x00\x61\x00\x03\x23", 0x1ea1 # | ^~~~~~~~~~~~~~~~~~~~ # 557| "\x00\x01\x7f\x00\x03\x07", 0x1e9b # 558| "\x00\x00\x41\x00\x03\x23", 0x1ea0 # 559|-> "\x00\x00\x61\x00\x03\x23", 0x1ea1 # 560| "\x00\x00\x41\x00\x03\x09", 0x1ea2 # 561| "\x00\x00\x61\x00\x03\x09", 0x1ea3 Error: COMPILER_WARNING: [#def745] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:560:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 560 | "\x00\x00\x41\x00\x03\x09", 0x1ea2 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 558| "\x00\x00\x41\x00\x03\x23", 0x1ea0 # 559| "\x00\x00\x61\x00\x03\x23", 0x1ea1 # 560|-> "\x00\x00\x41\x00\x03\x09", 0x1ea2 # 561| "\x00\x00\x61\x00\x03\x09", 0x1ea3 # 562| "\x00\x00\xc2\x00\x03\x01", 0x1ea4 Error: COMPILER_WARNING: [#def746] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:561:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 561 | "\x00\x00\x61\x00\x03\x09", 0x1ea3 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 559| "\x00\x00\x61\x00\x03\x23", 0x1ea1 # 560| "\x00\x00\x41\x00\x03\x09", 0x1ea2 # 561|-> "\x00\x00\x61\x00\x03\x09", 0x1ea3 # 562| "\x00\x00\xc2\x00\x03\x01", 0x1ea4 # 563| "\x00\x00\xe2\x00\x03\x01", 0x1ea5 Error: COMPILER_WARNING: [#def747] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:562:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 562 | "\x00\x00\xc2\x00\x03\x01", 0x1ea4 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 560| "\x00\x00\x41\x00\x03\x09", 0x1ea2 # 561| "\x00\x00\x61\x00\x03\x09", 0x1ea3 # 562|-> "\x00\x00\xc2\x00\x03\x01", 0x1ea4 # 563| "\x00\x00\xe2\x00\x03\x01", 0x1ea5 # 564| "\x00\x00\xc2\x00\x03\x00", 0x1ea6 Error: COMPILER_WARNING: [#def748] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:563:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 563 | "\x00\x00\xe2\x00\x03\x01", 0x1ea5 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 561| "\x00\x00\x61\x00\x03\x09", 0x1ea3 # 562| "\x00\x00\xc2\x00\x03\x01", 0x1ea4 # 563|-> "\x00\x00\xe2\x00\x03\x01", 0x1ea5 # 564| "\x00\x00\xc2\x00\x03\x00", 0x1ea6 # 565| "\x00\x00\xe2\x00\x03\x00", 0x1ea7 Error: COMPILER_WARNING: [#def749] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:564:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 564 | "\x00\x00\xc2\x00\x03\x00", 0x1ea6 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 562| "\x00\x00\xc2\x00\x03\x01", 0x1ea4 # 563| "\x00\x00\xe2\x00\x03\x01", 0x1ea5 # 564|-> "\x00\x00\xc2\x00\x03\x00", 0x1ea6 # 565| "\x00\x00\xe2\x00\x03\x00", 0x1ea7 # 566| "\x00\x00\xc2\x00\x03\x09", 0x1ea8 Error: COMPILER_WARNING: [#def750] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:565:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 565 | "\x00\x00\xe2\x00\x03\x00", 0x1ea7 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 563| "\x00\x00\xe2\x00\x03\x01", 0x1ea5 # 564| "\x00\x00\xc2\x00\x03\x00", 0x1ea6 # 565|-> "\x00\x00\xe2\x00\x03\x00", 0x1ea7 # 566| "\x00\x00\xc2\x00\x03\x09", 0x1ea8 # 567| "\x00\x00\xe2\x00\x03\x09", 0x1ea9 Error: COMPILER_WARNING: [#def751] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:566:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 566 | "\x00\x00\xc2\x00\x03\x09", 0x1ea8 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 564| "\x00\x00\xc2\x00\x03\x00", 0x1ea6 # 565| "\x00\x00\xe2\x00\x03\x00", 0x1ea7 # 566|-> "\x00\x00\xc2\x00\x03\x09", 0x1ea8 # 567| "\x00\x00\xe2\x00\x03\x09", 0x1ea9 # 568| "\x00\x00\xc2\x00\x03\x03", 0x1eaa Error: COMPILER_WARNING: [#def752] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:568:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 568 | "\x00\x00\xc2\x00\x03\x03", 0x1eaa # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 566| "\x00\x00\xc2\x00\x03\x09", 0x1ea8 # 567| "\x00\x00\xe2\x00\x03\x09", 0x1ea9 # 568|-> "\x00\x00\xc2\x00\x03\x03", 0x1eaa # 569| "\x00\x00\xe2\x00\x03\x03", 0x1eab # 570| "\x00\x1e\xa0\x00\x03\x02", 0x1eac Error: COMPILER_WARNING: [#def753] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:569:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 569 | "\x00\x00\xe2\x00\x03\x03", 0x1eab # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 567| "\x00\x00\xe2\x00\x03\x09", 0x1ea9 # 568| "\x00\x00\xc2\x00\x03\x03", 0x1eaa # 569|-> "\x00\x00\xe2\x00\x03\x03", 0x1eab # 570| "\x00\x1e\xa0\x00\x03\x02", 0x1eac # 571| "\x00\x1e\xa1\x00\x03\x02", 0x1ead Error: COMPILER_WARNING (CWE-909): [#def754] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:570:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 570 | "\x00\x1e\xa0\x00\x03\x02", 0x1eac # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 568| "\x00\x00\xc2\x00\x03\x03", 0x1eaa # 569| "\x00\x00\xe2\x00\x03\x03", 0x1eab # 570|-> "\x00\x1e\xa0\x00\x03\x02", 0x1eac # 571| "\x00\x1e\xa1\x00\x03\x02", 0x1ead # 572| "\x00\x01\x02\x00\x03\x01", 0x1eae Error: COMPILER_WARNING: [#def755] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:570:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 570 | "\x00\x1e\xa0\x00\x03\x02", 0x1eac # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 568| "\x00\x00\xc2\x00\x03\x03", 0x1eaa # 569| "\x00\x00\xe2\x00\x03\x03", 0x1eab # 570|-> "\x00\x1e\xa0\x00\x03\x02", 0x1eac # 571| "\x00\x1e\xa1\x00\x03\x02", 0x1ead # 572| "\x00\x01\x02\x00\x03\x01", 0x1eae Error: COMPILER_WARNING: [#def756] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:571:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 571 | "\x00\x1e\xa1\x00\x03\x02", 0x1ead # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 569| "\x00\x00\xe2\x00\x03\x03", 0x1eab # 570| "\x00\x1e\xa0\x00\x03\x02", 0x1eac # 571|-> "\x00\x1e\xa1\x00\x03\x02", 0x1ead # 572| "\x00\x01\x02\x00\x03\x01", 0x1eae # 573| "\x00\x01\x03\x00\x03\x01", 0x1eaf Error: COMPILER_WARNING: [#def757] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:572:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 572 | "\x00\x01\x02\x00\x03\x01", 0x1eae # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 570| "\x00\x1e\xa0\x00\x03\x02", 0x1eac # 571| "\x00\x1e\xa1\x00\x03\x02", 0x1ead # 572|-> "\x00\x01\x02\x00\x03\x01", 0x1eae # 573| "\x00\x01\x03\x00\x03\x01", 0x1eaf # 574| "\x00\x01\x02\x00\x03\x00", 0x1eb0 Error: COMPILER_WARNING: [#def758] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:573:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 573 | "\x00\x01\x03\x00\x03\x01", 0x1eaf # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 571| "\x00\x1e\xa1\x00\x03\x02", 0x1ead # 572| "\x00\x01\x02\x00\x03\x01", 0x1eae # 573|-> "\x00\x01\x03\x00\x03\x01", 0x1eaf # 574| "\x00\x01\x02\x00\x03\x00", 0x1eb0 # 575| "\x00\x01\x03\x00\x03\x00", 0x1eb1 Error: COMPILER_WARNING: [#def759] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:574:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 574 | "\x00\x01\x02\x00\x03\x00", 0x1eb0 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 572| "\x00\x01\x02\x00\x03\x01", 0x1eae # 573| "\x00\x01\x03\x00\x03\x01", 0x1eaf # 574|-> "\x00\x01\x02\x00\x03\x00", 0x1eb0 # 575| "\x00\x01\x03\x00\x03\x00", 0x1eb1 # 576| "\x00\x01\x02\x00\x03\x09", 0x1eb2 Error: COMPILER_WARNING (CWE-909): [#def760] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:575:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 575 | "\x00\x01\x03\x00\x03\x00", 0x1eb1 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 573| "\x00\x01\x03\x00\x03\x01", 0x1eaf # 574| "\x00\x01\x02\x00\x03\x00", 0x1eb0 # 575|-> "\x00\x01\x03\x00\x03\x00", 0x1eb1 # 576| "\x00\x01\x02\x00\x03\x09", 0x1eb2 # 577| "\x00\x01\x03\x00\x03\x09", 0x1eb3 Error: COMPILER_WARNING: [#def761] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:575:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 575 | "\x00\x01\x03\x00\x03\x00", 0x1eb1 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 573| "\x00\x01\x03\x00\x03\x01", 0x1eaf # 574| "\x00\x01\x02\x00\x03\x00", 0x1eb0 # 575|-> "\x00\x01\x03\x00\x03\x00", 0x1eb1 # 576| "\x00\x01\x02\x00\x03\x09", 0x1eb2 # 577| "\x00\x01\x03\x00\x03\x09", 0x1eb3 Error: COMPILER_WARNING: [#def762] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:576:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 576 | "\x00\x01\x02\x00\x03\x09", 0x1eb2 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 574| "\x00\x01\x02\x00\x03\x00", 0x1eb0 # 575| "\x00\x01\x03\x00\x03\x00", 0x1eb1 # 576|-> "\x00\x01\x02\x00\x03\x09", 0x1eb2 # 577| "\x00\x01\x03\x00\x03\x09", 0x1eb3 # 578| "\x00\x01\x02\x00\x03\x03", 0x1eb4 Error: COMPILER_WARNING: [#def763] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:577:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 577 | "\x00\x01\x03\x00\x03\x09", 0x1eb3 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 575| "\x00\x01\x03\x00\x03\x00", 0x1eb1 # 576| "\x00\x01\x02\x00\x03\x09", 0x1eb2 # 577|-> "\x00\x01\x03\x00\x03\x09", 0x1eb3 # 578| "\x00\x01\x02\x00\x03\x03", 0x1eb4 # 579| "\x00\x01\x03\x00\x03\x03", 0x1eb5 Error: COMPILER_WARNING: [#def764] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:578:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 578 | "\x00\x01\x02\x00\x03\x03", 0x1eb4 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 576| "\x00\x01\x02\x00\x03\x09", 0x1eb2 # 577| "\x00\x01\x03\x00\x03\x09", 0x1eb3 # 578|-> "\x00\x01\x02\x00\x03\x03", 0x1eb4 # 579| "\x00\x01\x03\x00\x03\x03", 0x1eb5 # 580| "\x00\x1e\xa0\x00\x03\x06", 0x1eb6 Error: COMPILER_WARNING: [#def765] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:579:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 579 | "\x00\x01\x03\x00\x03\x03", 0x1eb5 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 577| "\x00\x01\x03\x00\x03\x09", 0x1eb3 # 578| "\x00\x01\x02\x00\x03\x03", 0x1eb4 # 579|-> "\x00\x01\x03\x00\x03\x03", 0x1eb5 # 580| "\x00\x1e\xa0\x00\x03\x06", 0x1eb6 # 581| "\x00\x1e\xa1\x00\x03\x06", 0x1eb7 Error: COMPILER_WARNING: [#def766] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:580:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 580 | "\x00\x1e\xa0\x00\x03\x06", 0x1eb6 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 578| "\x00\x01\x02\x00\x03\x03", 0x1eb4 # 579| "\x00\x01\x03\x00\x03\x03", 0x1eb5 # 580|-> "\x00\x1e\xa0\x00\x03\x06", 0x1eb6 # 581| "\x00\x1e\xa1\x00\x03\x06", 0x1eb7 # 582| "\x00\x00\x45\x00\x03\x23", 0x1eb8 Error: COMPILER_WARNING: [#def767] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:581:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 581 | "\x00\x1e\xa1\x00\x03\x06", 0x1eb7 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 579| "\x00\x01\x03\x00\x03\x03", 0x1eb5 # 580| "\x00\x1e\xa0\x00\x03\x06", 0x1eb6 # 581|-> "\x00\x1e\xa1\x00\x03\x06", 0x1eb7 # 582| "\x00\x00\x45\x00\x03\x23", 0x1eb8 # 583| "\x00\x00\x65\x00\x03\x23", 0x1eb9 Error: COMPILER_WARNING: [#def768] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:582:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 582 | "\x00\x00\x45\x00\x03\x23", 0x1eb8 # | ^~~~~~~~~~~~~~~~~~~~ # 580| "\x00\x1e\xa0\x00\x03\x06", 0x1eb6 # 581| "\x00\x1e\xa1\x00\x03\x06", 0x1eb7 # 582|-> "\x00\x00\x45\x00\x03\x23", 0x1eb8 # 583| "\x00\x00\x65\x00\x03\x23", 0x1eb9 # 584| "\x00\x00\x45\x00\x03\x09", 0x1eba Error: COMPILER_WARNING: [#def769] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:583:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 583 | "\x00\x00\x65\x00\x03\x23", 0x1eb9 # | ^~~~~~~~~~~~~~~~~~~~ # 581| "\x00\x1e\xa1\x00\x03\x06", 0x1eb7 # 582| "\x00\x00\x45\x00\x03\x23", 0x1eb8 # 583|-> "\x00\x00\x65\x00\x03\x23", 0x1eb9 # 584| "\x00\x00\x45\x00\x03\x09", 0x1eba # 585| "\x00\x00\x65\x00\x03\x09", 0x1ebb Error: COMPILER_WARNING: [#def770] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:584:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 584 | "\x00\x00\x45\x00\x03\x09", 0x1eba # | ^~~~~~~~~~~~~~~~~~~~~~~ # 582| "\x00\x00\x45\x00\x03\x23", 0x1eb8 # 583| "\x00\x00\x65\x00\x03\x23", 0x1eb9 # 584|-> "\x00\x00\x45\x00\x03\x09", 0x1eba # 585| "\x00\x00\x65\x00\x03\x09", 0x1ebb # 586| "\x00\x00\x45\x00\x03\x03", 0x1ebc Error: COMPILER_WARNING: [#def771] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:585:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 585 | "\x00\x00\x65\x00\x03\x09", 0x1ebb # | ^~~~~~~~~~~~~~~~~~~~~~~ # 583| "\x00\x00\x65\x00\x03\x23", 0x1eb9 # 584| "\x00\x00\x45\x00\x03\x09", 0x1eba # 585|-> "\x00\x00\x65\x00\x03\x09", 0x1ebb # 586| "\x00\x00\x45\x00\x03\x03", 0x1ebc # 587| "\x00\x00\x65\x00\x03\x03", 0x1ebd Error: COMPILER_WARNING: [#def772] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:586:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 586 | "\x00\x00\x45\x00\x03\x03", 0x1ebc # | ^~~~~~~~~~~~~~~~~~~~~~~ # 584| "\x00\x00\x45\x00\x03\x09", 0x1eba # 585| "\x00\x00\x65\x00\x03\x09", 0x1ebb # 586|-> "\x00\x00\x45\x00\x03\x03", 0x1ebc # 587| "\x00\x00\x65\x00\x03\x03", 0x1ebd # 588| "\x00\x00\xca\x00\x03\x01", 0x1ebe Error: COMPILER_WARNING: [#def773] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:587:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 587 | "\x00\x00\x65\x00\x03\x03", 0x1ebd # | ^~~~~~~~~~~~~~~~~~~~~~~ # 585| "\x00\x00\x65\x00\x03\x09", 0x1ebb # 586| "\x00\x00\x45\x00\x03\x03", 0x1ebc # 587|-> "\x00\x00\x65\x00\x03\x03", 0x1ebd # 588| "\x00\x00\xca\x00\x03\x01", 0x1ebe # 589| "\x00\x00\xea\x00\x03\x01", 0x1ebf Error: COMPILER_WARNING: [#def774] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:588:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 588 | "\x00\x00\xca\x00\x03\x01", 0x1ebe # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 586| "\x00\x00\x45\x00\x03\x03", 0x1ebc # 587| "\x00\x00\x65\x00\x03\x03", 0x1ebd # 588|-> "\x00\x00\xca\x00\x03\x01", 0x1ebe # 589| "\x00\x00\xea\x00\x03\x01", 0x1ebf # 590| "\x00\x00\xca\x00\x03\x00", 0x1ec0 Error: COMPILER_WARNING: [#def775] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:589:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 589 | "\x00\x00\xea\x00\x03\x01", 0x1ebf # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 587| "\x00\x00\x65\x00\x03\x03", 0x1ebd # 588| "\x00\x00\xca\x00\x03\x01", 0x1ebe # 589|-> "\x00\x00\xea\x00\x03\x01", 0x1ebf # 590| "\x00\x00\xca\x00\x03\x00", 0x1ec0 # 591| "\x00\x00\xea\x00\x03\x00", 0x1ec1 Error: COMPILER_WARNING: [#def776] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:590:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 590 | "\x00\x00\xca\x00\x03\x00", 0x1ec0 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 588| "\x00\x00\xca\x00\x03\x01", 0x1ebe # 589| "\x00\x00\xea\x00\x03\x01", 0x1ebf # 590|-> "\x00\x00\xca\x00\x03\x00", 0x1ec0 # 591| "\x00\x00\xea\x00\x03\x00", 0x1ec1 # 592| "\x00\x00\xca\x00\x03\x09", 0x1ec2 Error: COMPILER_WARNING: [#def777] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:591:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 591 | "\x00\x00\xea\x00\x03\x00", 0x1ec1 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 589| "\x00\x00\xea\x00\x03\x01", 0x1ebf # 590| "\x00\x00\xca\x00\x03\x00", 0x1ec0 # 591|-> "\x00\x00\xea\x00\x03\x00", 0x1ec1 # 592| "\x00\x00\xca\x00\x03\x09", 0x1ec2 # 593| "\x00\x00\xea\x00\x03\x09", 0x1ec3 Error: COMPILER_WARNING: [#def778] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:592:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 592 | "\x00\x00\xca\x00\x03\x09", 0x1ec2 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 590| "\x00\x00\xca\x00\x03\x00", 0x1ec0 # 591| "\x00\x00\xea\x00\x03\x00", 0x1ec1 # 592|-> "\x00\x00\xca\x00\x03\x09", 0x1ec2 # 593| "\x00\x00\xea\x00\x03\x09", 0x1ec3 # 594| "\x00\x00\xca\x00\x03\x03", 0x1ec4 Error: COMPILER_WARNING: [#def779] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:593:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 593 | "\x00\x00\xea\x00\x03\x09", 0x1ec3 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 591| "\x00\x00\xea\x00\x03\x00", 0x1ec1 # 592| "\x00\x00\xca\x00\x03\x09", 0x1ec2 # 593|-> "\x00\x00\xea\x00\x03\x09", 0x1ec3 # 594| "\x00\x00\xca\x00\x03\x03", 0x1ec4 # 595| "\x00\x00\xea\x00\x03\x03", 0x1ec5 Error: COMPILER_WARNING: [#def780] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:594:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 594 | "\x00\x00\xca\x00\x03\x03", 0x1ec4 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 592| "\x00\x00\xca\x00\x03\x09", 0x1ec2 # 593| "\x00\x00\xea\x00\x03\x09", 0x1ec3 # 594|-> "\x00\x00\xca\x00\x03\x03", 0x1ec4 # 595| "\x00\x00\xea\x00\x03\x03", 0x1ec5 # 596| "\x00\x1e\xb8\x00\x03\x02", 0x1ec6 Error: COMPILER_WARNING: [#def781] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:595:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 595 | "\x00\x00\xea\x00\x03\x03", 0x1ec5 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 593| "\x00\x00\xea\x00\x03\x09", 0x1ec3 # 594| "\x00\x00\xca\x00\x03\x03", 0x1ec4 # 595|-> "\x00\x00\xea\x00\x03\x03", 0x1ec5 # 596| "\x00\x1e\xb8\x00\x03\x02", 0x1ec6 # 597| "\x00\x1e\xb9\x00\x03\x02", 0x1ec7 Error: COMPILER_WARNING: [#def782] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:596:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 596 | "\x00\x1e\xb8\x00\x03\x02", 0x1ec6 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 594| "\x00\x00\xca\x00\x03\x03", 0x1ec4 # 595| "\x00\x00\xea\x00\x03\x03", 0x1ec5 # 596|-> "\x00\x1e\xb8\x00\x03\x02", 0x1ec6 # 597| "\x00\x1e\xb9\x00\x03\x02", 0x1ec7 # 598| "\x00\x00\x49\x00\x03\x09", 0x1ec8 Error: COMPILER_WARNING: [#def783] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:597:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 597 | "\x00\x1e\xb9\x00\x03\x02", 0x1ec7 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 595| "\x00\x00\xea\x00\x03\x03", 0x1ec5 # 596| "\x00\x1e\xb8\x00\x03\x02", 0x1ec6 # 597|-> "\x00\x1e\xb9\x00\x03\x02", 0x1ec7 # 598| "\x00\x00\x49\x00\x03\x09", 0x1ec8 # 599| "\x00\x00\x69\x00\x03\x09", 0x1ec9 Error: COMPILER_WARNING: [#def784] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:598:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 598 | "\x00\x00\x49\x00\x03\x09", 0x1ec8 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 596| "\x00\x1e\xb8\x00\x03\x02", 0x1ec6 # 597| "\x00\x1e\xb9\x00\x03\x02", 0x1ec7 # 598|-> "\x00\x00\x49\x00\x03\x09", 0x1ec8 # 599| "\x00\x00\x69\x00\x03\x09", 0x1ec9 # 600| "\x00\x00\x49\x00\x03\x23", 0x1eca Error: COMPILER_WARNING: [#def785] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:599:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 599 | "\x00\x00\x69\x00\x03\x09", 0x1ec9 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 597| "\x00\x1e\xb9\x00\x03\x02", 0x1ec7 # 598| "\x00\x00\x49\x00\x03\x09", 0x1ec8 # 599|-> "\x00\x00\x69\x00\x03\x09", 0x1ec9 # 600| "\x00\x00\x49\x00\x03\x23", 0x1eca # 601| "\x00\x00\x69\x00\x03\x23", 0x1ecb Error: COMPILER_WARNING: [#def786] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:600:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 600 | "\x00\x00\x49\x00\x03\x23", 0x1eca # | ^~~~~~~~~~~~~~~~~~~~ # 598| "\x00\x00\x49\x00\x03\x09", 0x1ec8 # 599| "\x00\x00\x69\x00\x03\x09", 0x1ec9 # 600|-> "\x00\x00\x49\x00\x03\x23", 0x1eca # 601| "\x00\x00\x69\x00\x03\x23", 0x1ecb # 602| "\x00\x00\x4f\x00\x03\x23", 0x1ecc Error: COMPILER_WARNING: [#def787] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:601:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 601 | "\x00\x00\x69\x00\x03\x23", 0x1ecb # | ^~~~~~~~~~~~~~~~~~~~ # 599| "\x00\x00\x69\x00\x03\x09", 0x1ec9 # 600| "\x00\x00\x49\x00\x03\x23", 0x1eca # 601|-> "\x00\x00\x69\x00\x03\x23", 0x1ecb # 602| "\x00\x00\x4f\x00\x03\x23", 0x1ecc # 603| "\x00\x00\x6f\x00\x03\x23", 0x1ecd Error: COMPILER_WARNING: [#def788] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:602:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 602 | "\x00\x00\x4f\x00\x03\x23", 0x1ecc # | ^~~~~~~~~~~~~~~~~~~~ # 600| "\x00\x00\x49\x00\x03\x23", 0x1eca # 601| "\x00\x00\x69\x00\x03\x23", 0x1ecb # 602|-> "\x00\x00\x4f\x00\x03\x23", 0x1ecc # 603| "\x00\x00\x6f\x00\x03\x23", 0x1ecd # 604| "\x00\x00\x4f\x00\x03\x09", 0x1ece Error: COMPILER_WARNING: [#def789] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:603:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 603 | "\x00\x00\x6f\x00\x03\x23", 0x1ecd # | ^~~~~~~~~~~~~~~~~~~~ # 601| "\x00\x00\x69\x00\x03\x23", 0x1ecb # 602| "\x00\x00\x4f\x00\x03\x23", 0x1ecc # 603|-> "\x00\x00\x6f\x00\x03\x23", 0x1ecd # 604| "\x00\x00\x4f\x00\x03\x09", 0x1ece # 605| "\x00\x00\x6f\x00\x03\x09", 0x1ecf Error: COMPILER_WARNING: [#def790] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:604:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 604 | "\x00\x00\x4f\x00\x03\x09", 0x1ece # | ^~~~~~~~~~~~~~~~~~~~~~~ # 602| "\x00\x00\x4f\x00\x03\x23", 0x1ecc # 603| "\x00\x00\x6f\x00\x03\x23", 0x1ecd # 604|-> "\x00\x00\x4f\x00\x03\x09", 0x1ece # 605| "\x00\x00\x6f\x00\x03\x09", 0x1ecf # 606| "\x00\x00\xd4\x00\x03\x01", 0x1ed0 Error: COMPILER_WARNING: [#def791] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:605:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 605 | "\x00\x00\x6f\x00\x03\x09", 0x1ecf # | ^~~~~~~~~~~~~~~~~~~~~~~ # 603| "\x00\x00\x6f\x00\x03\x23", 0x1ecd # 604| "\x00\x00\x4f\x00\x03\x09", 0x1ece # 605|-> "\x00\x00\x6f\x00\x03\x09", 0x1ecf # 606| "\x00\x00\xd4\x00\x03\x01", 0x1ed0 # 607| "\x00\x00\xf4\x00\x03\x01", 0x1ed1 Error: COMPILER_WARNING: [#def792] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:606:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 606 | "\x00\x00\xd4\x00\x03\x01", 0x1ed0 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 604| "\x00\x00\x4f\x00\x03\x09", 0x1ece # 605| "\x00\x00\x6f\x00\x03\x09", 0x1ecf # 606|-> "\x00\x00\xd4\x00\x03\x01", 0x1ed0 # 607| "\x00\x00\xf4\x00\x03\x01", 0x1ed1 # 608| "\x00\x00\xd4\x00\x03\x00", 0x1ed2 Error: COMPILER_WARNING: [#def793] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:607:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 607 | "\x00\x00\xf4\x00\x03\x01", 0x1ed1 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 605| "\x00\x00\x6f\x00\x03\x09", 0x1ecf # 606| "\x00\x00\xd4\x00\x03\x01", 0x1ed0 # 607|-> "\x00\x00\xf4\x00\x03\x01", 0x1ed1 # 608| "\x00\x00\xd4\x00\x03\x00", 0x1ed2 # 609| "\x00\x00\xf4\x00\x03\x00", 0x1ed3 Error: COMPILER_WARNING: [#def794] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:608:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 608 | "\x00\x00\xd4\x00\x03\x00", 0x1ed2 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 606| "\x00\x00\xd4\x00\x03\x01", 0x1ed0 # 607| "\x00\x00\xf4\x00\x03\x01", 0x1ed1 # 608|-> "\x00\x00\xd4\x00\x03\x00", 0x1ed2 # 609| "\x00\x00\xf4\x00\x03\x00", 0x1ed3 # 610| "\x00\x00\xd4\x00\x03\x09", 0x1ed4 Error: COMPILER_WARNING: [#def795] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:609:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 609 | "\x00\x00\xf4\x00\x03\x00", 0x1ed3 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 607| "\x00\x00\xf4\x00\x03\x01", 0x1ed1 # 608| "\x00\x00\xd4\x00\x03\x00", 0x1ed2 # 609|-> "\x00\x00\xf4\x00\x03\x00", 0x1ed3 # 610| "\x00\x00\xd4\x00\x03\x09", 0x1ed4 # 611| "\x00\x00\xf4\x00\x03\x09", 0x1ed5 Error: COMPILER_WARNING: [#def796] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:610:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 610 | "\x00\x00\xd4\x00\x03\x09", 0x1ed4 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 608| "\x00\x00\xd4\x00\x03\x00", 0x1ed2 # 609| "\x00\x00\xf4\x00\x03\x00", 0x1ed3 # 610|-> "\x00\x00\xd4\x00\x03\x09", 0x1ed4 # 611| "\x00\x00\xf4\x00\x03\x09", 0x1ed5 # 612| "\x00\x00\xd4\x00\x03\x03", 0x1ed6 Error: COMPILER_WARNING (CWE-909): [#def797] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:612:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 612 | "\x00\x00\xd4\x00\x03\x03", 0x1ed6 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 610| "\x00\x00\xd4\x00\x03\x09", 0x1ed4 # 611| "\x00\x00\xf4\x00\x03\x09", 0x1ed5 # 612|-> "\x00\x00\xd4\x00\x03\x03", 0x1ed6 # 613| "\x00\x00\xf4\x00\x03\x03", 0x1ed7 # 614| "\x00\x1e\xcc\x00\x03\x02", 0x1ed8 Error: COMPILER_WARNING: [#def798] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:612:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 612 | "\x00\x00\xd4\x00\x03\x03", 0x1ed6 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 610| "\x00\x00\xd4\x00\x03\x09", 0x1ed4 # 611| "\x00\x00\xf4\x00\x03\x09", 0x1ed5 # 612|-> "\x00\x00\xd4\x00\x03\x03", 0x1ed6 # 613| "\x00\x00\xf4\x00\x03\x03", 0x1ed7 # 614| "\x00\x1e\xcc\x00\x03\x02", 0x1ed8 Error: COMPILER_WARNING: [#def799] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:613:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 613 | "\x00\x00\xf4\x00\x03\x03", 0x1ed7 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 611| "\x00\x00\xf4\x00\x03\x09", 0x1ed5 # 612| "\x00\x00\xd4\x00\x03\x03", 0x1ed6 # 613|-> "\x00\x00\xf4\x00\x03\x03", 0x1ed7 # 614| "\x00\x1e\xcc\x00\x03\x02", 0x1ed8 # 615| "\x00\x1e\xcd\x00\x03\x02", 0x1ed9 Error: COMPILER_WARNING: [#def800] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:614:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 614 | "\x00\x1e\xcc\x00\x03\x02", 0x1ed8 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 612| "\x00\x00\xd4\x00\x03\x03", 0x1ed6 # 613| "\x00\x00\xf4\x00\x03\x03", 0x1ed7 # 614|-> "\x00\x1e\xcc\x00\x03\x02", 0x1ed8 # 615| "\x00\x1e\xcd\x00\x03\x02", 0x1ed9 # 616| "\x00\x01\xa0\x00\x03\x01", 0x1eda Error: COMPILER_WARNING: [#def801] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:615:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 615 | "\x00\x1e\xcd\x00\x03\x02", 0x1ed9 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 613| "\x00\x00\xf4\x00\x03\x03", 0x1ed7 # 614| "\x00\x1e\xcc\x00\x03\x02", 0x1ed8 # 615|-> "\x00\x1e\xcd\x00\x03\x02", 0x1ed9 # 616| "\x00\x01\xa0\x00\x03\x01", 0x1eda # 617| "\x00\x01\xa1\x00\x03\x01", 0x1edb Error: COMPILER_WARNING: [#def802] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:616:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 616 | "\x00\x01\xa0\x00\x03\x01", 0x1eda # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 614| "\x00\x1e\xcc\x00\x03\x02", 0x1ed8 # 615| "\x00\x1e\xcd\x00\x03\x02", 0x1ed9 # 616|-> "\x00\x01\xa0\x00\x03\x01", 0x1eda # 617| "\x00\x01\xa1\x00\x03\x01", 0x1edb # 618| "\x00\x01\xa0\x00\x03\x00", 0x1edc Error: COMPILER_WARNING: [#def803] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:617:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 617 | "\x00\x01\xa1\x00\x03\x01", 0x1edb # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 615| "\x00\x1e\xcd\x00\x03\x02", 0x1ed9 # 616| "\x00\x01\xa0\x00\x03\x01", 0x1eda # 617|-> "\x00\x01\xa1\x00\x03\x01", 0x1edb # 618| "\x00\x01\xa0\x00\x03\x00", 0x1edc # 619| "\x00\x01\xa1\x00\x03\x00", 0x1edd Error: COMPILER_WARNING: [#def804] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:618:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 618 | "\x00\x01\xa0\x00\x03\x00", 0x1edc # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 616| "\x00\x01\xa0\x00\x03\x01", 0x1eda # 617| "\x00\x01\xa1\x00\x03\x01", 0x1edb # 618|-> "\x00\x01\xa0\x00\x03\x00", 0x1edc # 619| "\x00\x01\xa1\x00\x03\x00", 0x1edd # 620| "\x00\x01\xa0\x00\x03\x09", 0x1ede Error: COMPILER_WARNING: [#def805] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:619:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 619 | "\x00\x01\xa1\x00\x03\x00", 0x1edd # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 617| "\x00\x01\xa1\x00\x03\x01", 0x1edb # 618| "\x00\x01\xa0\x00\x03\x00", 0x1edc # 619|-> "\x00\x01\xa1\x00\x03\x00", 0x1edd # 620| "\x00\x01\xa0\x00\x03\x09", 0x1ede # 621| "\x00\x01\xa1\x00\x03\x09", 0x1edf Error: COMPILER_WARNING: [#def806] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:620:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 620 | "\x00\x01\xa0\x00\x03\x09", 0x1ede # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 618| "\x00\x01\xa0\x00\x03\x00", 0x1edc # 619| "\x00\x01\xa1\x00\x03\x00", 0x1edd # 620|-> "\x00\x01\xa0\x00\x03\x09", 0x1ede # 621| "\x00\x01\xa1\x00\x03\x09", 0x1edf # 622| "\x00\x01\xa0\x00\x03\x03", 0x1ee0 Error: COMPILER_WARNING: [#def807] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:621:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 621 | "\x00\x01\xa1\x00\x03\x09", 0x1edf # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 619| "\x00\x01\xa1\x00\x03\x00", 0x1edd # 620| "\x00\x01\xa0\x00\x03\x09", 0x1ede # 621|-> "\x00\x01\xa1\x00\x03\x09", 0x1edf # 622| "\x00\x01\xa0\x00\x03\x03", 0x1ee0 # 623| "\x00\x01\xa1\x00\x03\x03", 0x1ee1 Error: COMPILER_WARNING: [#def808] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:622:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 622 | "\x00\x01\xa0\x00\x03\x03", 0x1ee0 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 620| "\x00\x01\xa0\x00\x03\x09", 0x1ede # 621| "\x00\x01\xa1\x00\x03\x09", 0x1edf # 622|-> "\x00\x01\xa0\x00\x03\x03", 0x1ee0 # 623| "\x00\x01\xa1\x00\x03\x03", 0x1ee1 # 624| "\x00\x01\xa0\x00\x03\x23", 0x1ee2 Error: COMPILER_WARNING: [#def809] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:623:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 623 | "\x00\x01\xa1\x00\x03\x03", 0x1ee1 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 621| "\x00\x01\xa1\x00\x03\x09", 0x1edf # 622| "\x00\x01\xa0\x00\x03\x03", 0x1ee0 # 623|-> "\x00\x01\xa1\x00\x03\x03", 0x1ee1 # 624| "\x00\x01\xa0\x00\x03\x23", 0x1ee2 # 625| "\x00\x01\xa1\x00\x03\x23", 0x1ee3 Error: COMPILER_WARNING: [#def810] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:624:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 624 | "\x00\x01\xa0\x00\x03\x23", 0x1ee2 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 622| "\x00\x01\xa0\x00\x03\x03", 0x1ee0 # 623| "\x00\x01\xa1\x00\x03\x03", 0x1ee1 # 624|-> "\x00\x01\xa0\x00\x03\x23", 0x1ee2 # 625| "\x00\x01\xa1\x00\x03\x23", 0x1ee3 # 626| "\x00\x00\x55\x00\x03\x23", 0x1ee4 Error: COMPILER_WARNING (CWE-909): [#def811] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:625:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 625 | "\x00\x01\xa1\x00\x03\x23", 0x1ee3 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 623| "\x00\x01\xa1\x00\x03\x03", 0x1ee1 # 624| "\x00\x01\xa0\x00\x03\x23", 0x1ee2 # 625|-> "\x00\x01\xa1\x00\x03\x23", 0x1ee3 # 626| "\x00\x00\x55\x00\x03\x23", 0x1ee4 # 627| "\x00\x00\x75\x00\x03\x23", 0x1ee5 Error: COMPILER_WARNING: [#def812] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:625:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 625 | "\x00\x01\xa1\x00\x03\x23", 0x1ee3 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 623| "\x00\x01\xa1\x00\x03\x03", 0x1ee1 # 624| "\x00\x01\xa0\x00\x03\x23", 0x1ee2 # 625|-> "\x00\x01\xa1\x00\x03\x23", 0x1ee3 # 626| "\x00\x00\x55\x00\x03\x23", 0x1ee4 # 627| "\x00\x00\x75\x00\x03\x23", 0x1ee5 Error: COMPILER_WARNING: [#def813] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:626:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 626 | "\x00\x00\x55\x00\x03\x23", 0x1ee4 # | ^~~~~~~~~~~~~~~~~~~~ # 624| "\x00\x01\xa0\x00\x03\x23", 0x1ee2 # 625| "\x00\x01\xa1\x00\x03\x23", 0x1ee3 # 626|-> "\x00\x00\x55\x00\x03\x23", 0x1ee4 # 627| "\x00\x00\x75\x00\x03\x23", 0x1ee5 # 628| "\x00\x00\x55\x00\x03\x09", 0x1ee6 Error: COMPILER_WARNING: [#def814] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:627:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 627 | "\x00\x00\x75\x00\x03\x23", 0x1ee5 # | ^~~~~~~~~~~~~~~~~~~~ # 625| "\x00\x01\xa1\x00\x03\x23", 0x1ee3 # 626| "\x00\x00\x55\x00\x03\x23", 0x1ee4 # 627|-> "\x00\x00\x75\x00\x03\x23", 0x1ee5 # 628| "\x00\x00\x55\x00\x03\x09", 0x1ee6 # 629| "\x00\x00\x75\x00\x03\x09", 0x1ee7 Error: COMPILER_WARNING: [#def815] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:628:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 628 | "\x00\x00\x55\x00\x03\x09", 0x1ee6 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 626| "\x00\x00\x55\x00\x03\x23", 0x1ee4 # 627| "\x00\x00\x75\x00\x03\x23", 0x1ee5 # 628|-> "\x00\x00\x55\x00\x03\x09", 0x1ee6 # 629| "\x00\x00\x75\x00\x03\x09", 0x1ee7 # 630| "\x00\x01\xaf\x00\x03\x01", 0x1ee8 Error: COMPILER_WARNING: [#def816] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:629:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 629 | "\x00\x00\x75\x00\x03\x09", 0x1ee7 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 627| "\x00\x00\x75\x00\x03\x23", 0x1ee5 # 628| "\x00\x00\x55\x00\x03\x09", 0x1ee6 # 629|-> "\x00\x00\x75\x00\x03\x09", 0x1ee7 # 630| "\x00\x01\xaf\x00\x03\x01", 0x1ee8 # 631| "\x00\x01\xb0\x00\x03\x01", 0x1ee9 Error: COMPILER_WARNING: [#def817] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:630:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 630 | "\x00\x01\xaf\x00\x03\x01", 0x1ee8 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 628| "\x00\x00\x55\x00\x03\x09", 0x1ee6 # 629| "\x00\x00\x75\x00\x03\x09", 0x1ee7 # 630|-> "\x00\x01\xaf\x00\x03\x01", 0x1ee8 # 631| "\x00\x01\xb0\x00\x03\x01", 0x1ee9 # 632| "\x00\x01\xaf\x00\x03\x00", 0x1eea Error: COMPILER_WARNING: [#def818] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:631:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 631 | "\x00\x01\xb0\x00\x03\x01", 0x1ee9 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 629| "\x00\x00\x75\x00\x03\x09", 0x1ee7 # 630| "\x00\x01\xaf\x00\x03\x01", 0x1ee8 # 631|-> "\x00\x01\xb0\x00\x03\x01", 0x1ee9 # 632| "\x00\x01\xaf\x00\x03\x00", 0x1eea # 633| "\x00\x01\xb0\x00\x03\x00", 0x1eeb Error: COMPILER_WARNING: [#def819] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:632:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 632 | "\x00\x01\xaf\x00\x03\x00", 0x1eea # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 630| "\x00\x01\xaf\x00\x03\x01", 0x1ee8 # 631| "\x00\x01\xb0\x00\x03\x01", 0x1ee9 # 632|-> "\x00\x01\xaf\x00\x03\x00", 0x1eea # 633| "\x00\x01\xb0\x00\x03\x00", 0x1eeb # 634| "\x00\x01\xaf\x00\x03\x09", 0x1eec Error: COMPILER_WARNING: [#def820] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:633:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 633 | "\x00\x01\xb0\x00\x03\x00", 0x1eeb # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 631| "\x00\x01\xb0\x00\x03\x01", 0x1ee9 # 632| "\x00\x01\xaf\x00\x03\x00", 0x1eea # 633|-> "\x00\x01\xb0\x00\x03\x00", 0x1eeb # 634| "\x00\x01\xaf\x00\x03\x09", 0x1eec # 635| "\x00\x01\xb0\x00\x03\x09", 0x1eed Error: COMPILER_WARNING: [#def821] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:634:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 634 | "\x00\x01\xaf\x00\x03\x09", 0x1eec # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 632| "\x00\x01\xaf\x00\x03\x00", 0x1eea # 633| "\x00\x01\xb0\x00\x03\x00", 0x1eeb # 634|-> "\x00\x01\xaf\x00\x03\x09", 0x1eec # 635| "\x00\x01\xb0\x00\x03\x09", 0x1eed # 636| "\x00\x01\xaf\x00\x03\x03", 0x1eee Error: COMPILER_WARNING (CWE-909): [#def822] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:635:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 635 | "\x00\x01\xb0\x00\x03\x09", 0x1eed # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 633| "\x00\x01\xb0\x00\x03\x00", 0x1eeb # 634| "\x00\x01\xaf\x00\x03\x09", 0x1eec # 635|-> "\x00\x01\xb0\x00\x03\x09", 0x1eed # 636| "\x00\x01\xaf\x00\x03\x03", 0x1eee # 637| "\x00\x01\xb0\x00\x03\x03", 0x1eef Error: COMPILER_WARNING: [#def823] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:635:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 635 | "\x00\x01\xb0\x00\x03\x09", 0x1eed # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 633| "\x00\x01\xb0\x00\x03\x00", 0x1eeb # 634| "\x00\x01\xaf\x00\x03\x09", 0x1eec # 635|-> "\x00\x01\xb0\x00\x03\x09", 0x1eed # 636| "\x00\x01\xaf\x00\x03\x03", 0x1eee # 637| "\x00\x01\xb0\x00\x03\x03", 0x1eef Error: COMPILER_WARNING: [#def824] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:636:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 636 | "\x00\x01\xaf\x00\x03\x03", 0x1eee # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 634| "\x00\x01\xaf\x00\x03\x09", 0x1eec # 635| "\x00\x01\xb0\x00\x03\x09", 0x1eed # 636|-> "\x00\x01\xaf\x00\x03\x03", 0x1eee # 637| "\x00\x01\xb0\x00\x03\x03", 0x1eef # 638| "\x00\x01\xaf\x00\x03\x23", 0x1ef0 Error: COMPILER_WARNING: [#def825] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:637:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 637 | "\x00\x01\xb0\x00\x03\x03", 0x1eef # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 635| "\x00\x01\xb0\x00\x03\x09", 0x1eed # 636| "\x00\x01\xaf\x00\x03\x03", 0x1eee # 637|-> "\x00\x01\xb0\x00\x03\x03", 0x1eef # 638| "\x00\x01\xaf\x00\x03\x23", 0x1ef0 # 639| "\x00\x01\xb0\x00\x03\x23", 0x1ef1 Error: COMPILER_WARNING: [#def826] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:638:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 638 | "\x00\x01\xaf\x00\x03\x23", 0x1ef0 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 636| "\x00\x01\xaf\x00\x03\x03", 0x1eee # 637| "\x00\x01\xb0\x00\x03\x03", 0x1eef # 638|-> "\x00\x01\xaf\x00\x03\x23", 0x1ef0 # 639| "\x00\x01\xb0\x00\x03\x23", 0x1ef1 # 640| "\x00\x00\x59\x00\x03\x00", 0x1ef2 Error: COMPILER_WARNING (CWE-909): [#def827] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:639:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 639 | "\x00\x01\xb0\x00\x03\x23", 0x1ef1 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 637| "\x00\x01\xb0\x00\x03\x03", 0x1eef # 638| "\x00\x01\xaf\x00\x03\x23", 0x1ef0 # 639|-> "\x00\x01\xb0\x00\x03\x23", 0x1ef1 # 640| "\x00\x00\x59\x00\x03\x00", 0x1ef2 # 641| "\x00\x00\x79\x00\x03\x00", 0x1ef3 Error: COMPILER_WARNING: [#def828] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:639:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 639 | "\x00\x01\xb0\x00\x03\x23", 0x1ef1 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 637| "\x00\x01\xb0\x00\x03\x03", 0x1eef # 638| "\x00\x01\xaf\x00\x03\x23", 0x1ef0 # 639|-> "\x00\x01\xb0\x00\x03\x23", 0x1ef1 # 640| "\x00\x00\x59\x00\x03\x00", 0x1ef2 # 641| "\x00\x00\x79\x00\x03\x00", 0x1ef3 Error: COMPILER_WARNING (CWE-909): [#def829] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:640:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 640 | "\x00\x00\x59\x00\x03\x00", 0x1ef2 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 638| "\x00\x01\xaf\x00\x03\x23", 0x1ef0 # 639| "\x00\x01\xb0\x00\x03\x23", 0x1ef1 # 640|-> "\x00\x00\x59\x00\x03\x00", 0x1ef2 # 641| "\x00\x00\x79\x00\x03\x00", 0x1ef3 # 642| "\x00\x00\x59\x00\x03\x23", 0x1ef4 Error: COMPILER_WARNING: [#def830] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:640:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 640 | "\x00\x00\x59\x00\x03\x00", 0x1ef2 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 638| "\x00\x01\xaf\x00\x03\x23", 0x1ef0 # 639| "\x00\x01\xb0\x00\x03\x23", 0x1ef1 # 640|-> "\x00\x00\x59\x00\x03\x00", 0x1ef2 # 641| "\x00\x00\x79\x00\x03\x00", 0x1ef3 # 642| "\x00\x00\x59\x00\x03\x23", 0x1ef4 Error: COMPILER_WARNING: [#def831] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:641:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 641 | "\x00\x00\x79\x00\x03\x00", 0x1ef3 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 639| "\x00\x01\xb0\x00\x03\x23", 0x1ef1 # 640| "\x00\x00\x59\x00\x03\x00", 0x1ef2 # 641|-> "\x00\x00\x79\x00\x03\x00", 0x1ef3 # 642| "\x00\x00\x59\x00\x03\x23", 0x1ef4 # 643| "\x00\x00\x79\x00\x03\x23", 0x1ef5 Error: COMPILER_WARNING: [#def832] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:642:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 642 | "\x00\x00\x59\x00\x03\x23", 0x1ef4 # | ^~~~~~~~~~~~~~~~~~~~ # 640| "\x00\x00\x59\x00\x03\x00", 0x1ef2 # 641| "\x00\x00\x79\x00\x03\x00", 0x1ef3 # 642|-> "\x00\x00\x59\x00\x03\x23", 0x1ef4 # 643| "\x00\x00\x79\x00\x03\x23", 0x1ef5 # 644| "\x00\x00\x59\x00\x03\x09", 0x1ef6 Error: COMPILER_WARNING: [#def833] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:643:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 643 | "\x00\x00\x79\x00\x03\x23", 0x1ef5 # | ^~~~~~~~~~~~~~~~~~~~ # 641| "\x00\x00\x79\x00\x03\x00", 0x1ef3 # 642| "\x00\x00\x59\x00\x03\x23", 0x1ef4 # 643|-> "\x00\x00\x79\x00\x03\x23", 0x1ef5 # 644| "\x00\x00\x59\x00\x03\x09", 0x1ef6 # 645| "\x00\x00\x79\x00\x03\x09", 0x1ef7 Error: COMPILER_WARNING: [#def834] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:644:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 644 | "\x00\x00\x59\x00\x03\x09", 0x1ef6 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 642| "\x00\x00\x59\x00\x03\x23", 0x1ef4 # 643| "\x00\x00\x79\x00\x03\x23", 0x1ef5 # 644|-> "\x00\x00\x59\x00\x03\x09", 0x1ef6 # 645| "\x00\x00\x79\x00\x03\x09", 0x1ef7 # 646| "\x00\x00\x59\x00\x03\x03", 0x1ef8 Error: COMPILER_WARNING: [#def835] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:645:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 645 | "\x00\x00\x79\x00\x03\x09", 0x1ef7 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 643| "\x00\x00\x79\x00\x03\x23", 0x1ef5 # 644| "\x00\x00\x59\x00\x03\x09", 0x1ef6 # 645|-> "\x00\x00\x79\x00\x03\x09", 0x1ef7 # 646| "\x00\x00\x59\x00\x03\x03", 0x1ef8 # 647| "\x00\x00\x79\x00\x03\x03", 0x1ef9 Error: COMPILER_WARNING: [#def836] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:646:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 646 | "\x00\x00\x59\x00\x03\x03", 0x1ef8 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 644| "\x00\x00\x59\x00\x03\x09", 0x1ef6 # 645| "\x00\x00\x79\x00\x03\x09", 0x1ef7 # 646|-> "\x00\x00\x59\x00\x03\x03", 0x1ef8 # 647| "\x00\x00\x79\x00\x03\x03", 0x1ef9 # 648| "\x00\x03\xb1\x00\x03\x13", 0x1f00 Error: COMPILER_WARNING: [#def837] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:647:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 647 | "\x00\x00\x79\x00\x03\x03", 0x1ef9 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 645| "\x00\x00\x79\x00\x03\x09", 0x1ef7 # 646| "\x00\x00\x59\x00\x03\x03", 0x1ef8 # 647|-> "\x00\x00\x79\x00\x03\x03", 0x1ef9 # 648| "\x00\x03\xb1\x00\x03\x13", 0x1f00 # 649| "\x00\x03\xb1\x00\x03\x14", 0x1f01 Error: COMPILER_WARNING: [#def838] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:648:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 648 | "\x00\x03\xb1\x00\x03\x13", 0x1f00 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 646| "\x00\x00\x59\x00\x03\x03", 0x1ef8 # 647| "\x00\x00\x79\x00\x03\x03", 0x1ef9 # 648|-> "\x00\x03\xb1\x00\x03\x13", 0x1f00 # 649| "\x00\x03\xb1\x00\x03\x14", 0x1f01 # 650| "\x00\x1f\x00\x00\x03\x00", 0x1f02 Error: COMPILER_WARNING: [#def839] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:649:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 649 | "\x00\x03\xb1\x00\x03\x14", 0x1f01 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 647| "\x00\x00\x79\x00\x03\x03", 0x1ef9 # 648| "\x00\x03\xb1\x00\x03\x13", 0x1f00 # 649|-> "\x00\x03\xb1\x00\x03\x14", 0x1f01 # 650| "\x00\x1f\x00\x00\x03\x00", 0x1f02 # 651| "\x00\x1f\x01\x00\x03\x00", 0x1f03 Error: COMPILER_WARNING: [#def840] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:650:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 650 | "\x00\x1f\x00\x00\x03\x00", 0x1f02 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 648| "\x00\x03\xb1\x00\x03\x13", 0x1f00 # 649| "\x00\x03\xb1\x00\x03\x14", 0x1f01 # 650|-> "\x00\x1f\x00\x00\x03\x00", 0x1f02 # 651| "\x00\x1f\x01\x00\x03\x00", 0x1f03 # 652| "\x00\x1f\x00\x00\x03\x01", 0x1f04 Error: COMPILER_WARNING: [#def841] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:651:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 651 | "\x00\x1f\x01\x00\x03\x00", 0x1f03 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 649| "\x00\x03\xb1\x00\x03\x14", 0x1f01 # 650| "\x00\x1f\x00\x00\x03\x00", 0x1f02 # 651|-> "\x00\x1f\x01\x00\x03\x00", 0x1f03 # 652| "\x00\x1f\x00\x00\x03\x01", 0x1f04 # 653| "\x00\x1f\x01\x00\x03\x01", 0x1f05 Error: COMPILER_WARNING: [#def842] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:652:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 652 | "\x00\x1f\x00\x00\x03\x01", 0x1f04 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 650| "\x00\x1f\x00\x00\x03\x00", 0x1f02 # 651| "\x00\x1f\x01\x00\x03\x00", 0x1f03 # 652|-> "\x00\x1f\x00\x00\x03\x01", 0x1f04 # 653| "\x00\x1f\x01\x00\x03\x01", 0x1f05 # 654| "\x00\x1f\x00\x00\x03\x42", 0x1f06 Error: COMPILER_WARNING: [#def843] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:653:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 653 | "\x00\x1f\x01\x00\x03\x01", 0x1f05 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 651| "\x00\x1f\x01\x00\x03\x00", 0x1f03 # 652| "\x00\x1f\x00\x00\x03\x01", 0x1f04 # 653|-> "\x00\x1f\x01\x00\x03\x01", 0x1f05 # 654| "\x00\x1f\x00\x00\x03\x42", 0x1f06 # 655| "\x00\x1f\x01\x00\x03\x42", 0x1f07 Error: COMPILER_WARNING: [#def844] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:654:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 654 | "\x00\x1f\x00\x00\x03\x42", 0x1f06 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 652| "\x00\x1f\x00\x00\x03\x01", 0x1f04 # 653| "\x00\x1f\x01\x00\x03\x01", 0x1f05 # 654|-> "\x00\x1f\x00\x00\x03\x42", 0x1f06 # 655| "\x00\x1f\x01\x00\x03\x42", 0x1f07 # 656| "\x00\x03\x91\x00\x03\x13", 0x1f08 Error: COMPILER_WARNING: [#def845] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:655:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 655 | "\x00\x1f\x01\x00\x03\x42", 0x1f07 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 653| "\x00\x1f\x01\x00\x03\x01", 0x1f05 # 654| "\x00\x1f\x00\x00\x03\x42", 0x1f06 # 655|-> "\x00\x1f\x01\x00\x03\x42", 0x1f07 # 656| "\x00\x03\x91\x00\x03\x13", 0x1f08 # 657| "\x00\x03\x91\x00\x03\x14", 0x1f09 Error: COMPILER_WARNING: [#def846] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:656:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 656 | "\x00\x03\x91\x00\x03\x13", 0x1f08 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 654| "\x00\x1f\x00\x00\x03\x42", 0x1f06 # 655| "\x00\x1f\x01\x00\x03\x42", 0x1f07 # 656|-> "\x00\x03\x91\x00\x03\x13", 0x1f08 # 657| "\x00\x03\x91\x00\x03\x14", 0x1f09 # 658| "\x00\x1f\x08\x00\x03\x00", 0x1f0a Error: COMPILER_WARNING: [#def847] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:657:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 657 | "\x00\x03\x91\x00\x03\x14", 0x1f09 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 655| "\x00\x1f\x01\x00\x03\x42", 0x1f07 # 656| "\x00\x03\x91\x00\x03\x13", 0x1f08 # 657|-> "\x00\x03\x91\x00\x03\x14", 0x1f09 # 658| "\x00\x1f\x08\x00\x03\x00", 0x1f0a # 659| "\x00\x1f\x09\x00\x03\x00", 0x1f0b Error: COMPILER_WARNING (CWE-909): [#def848] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:658:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 658 | "\x00\x1f\x08\x00\x03\x00", 0x1f0a # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 656| "\x00\x03\x91\x00\x03\x13", 0x1f08 # 657| "\x00\x03\x91\x00\x03\x14", 0x1f09 # 658|-> "\x00\x1f\x08\x00\x03\x00", 0x1f0a # 659| "\x00\x1f\x09\x00\x03\x00", 0x1f0b # 660| "\x00\x1f\x08\x00\x03\x01", 0x1f0c Error: COMPILER_WARNING: [#def849] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:658:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 658 | "\x00\x1f\x08\x00\x03\x00", 0x1f0a # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 656| "\x00\x03\x91\x00\x03\x13", 0x1f08 # 657| "\x00\x03\x91\x00\x03\x14", 0x1f09 # 658|-> "\x00\x1f\x08\x00\x03\x00", 0x1f0a # 659| "\x00\x1f\x09\x00\x03\x00", 0x1f0b # 660| "\x00\x1f\x08\x00\x03\x01", 0x1f0c Error: COMPILER_WARNING: [#def850] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:659:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 659 | "\x00\x1f\x09\x00\x03\x00", 0x1f0b # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 657| "\x00\x03\x91\x00\x03\x14", 0x1f09 # 658| "\x00\x1f\x08\x00\x03\x00", 0x1f0a # 659|-> "\x00\x1f\x09\x00\x03\x00", 0x1f0b # 660| "\x00\x1f\x08\x00\x03\x01", 0x1f0c # 661| "\x00\x1f\x09\x00\x03\x01", 0x1f0d Error: COMPILER_WARNING: [#def851] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:660:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 660 | "\x00\x1f\x08\x00\x03\x01", 0x1f0c # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 658| "\x00\x1f\x08\x00\x03\x00", 0x1f0a # 659| "\x00\x1f\x09\x00\x03\x00", 0x1f0b # 660|-> "\x00\x1f\x08\x00\x03\x01", 0x1f0c # 661| "\x00\x1f\x09\x00\x03\x01", 0x1f0d # 662| "\x00\x1f\x08\x00\x03\x42", 0x1f0e Error: COMPILER_WARNING: [#def852] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:661:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 661 | "\x00\x1f\x09\x00\x03\x01", 0x1f0d # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 659| "\x00\x1f\x09\x00\x03\x00", 0x1f0b # 660| "\x00\x1f\x08\x00\x03\x01", 0x1f0c # 661|-> "\x00\x1f\x09\x00\x03\x01", 0x1f0d # 662| "\x00\x1f\x08\x00\x03\x42", 0x1f0e # 663| "\x00\x1f\x09\x00\x03\x42", 0x1f0f Error: COMPILER_WARNING: [#def853] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:662:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 662 | "\x00\x1f\x08\x00\x03\x42", 0x1f0e # | ^~~~~~~~~~~~~~~~~~~~~~~ # 660| "\x00\x1f\x08\x00\x03\x01", 0x1f0c # 661| "\x00\x1f\x09\x00\x03\x01", 0x1f0d # 662|-> "\x00\x1f\x08\x00\x03\x42", 0x1f0e # 663| "\x00\x1f\x09\x00\x03\x42", 0x1f0f # 664| "\x00\x03\xb5\x00\x03\x13", 0x1f10 Error: COMPILER_WARNING: [#def854] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:663:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 663 | "\x00\x1f\x09\x00\x03\x42", 0x1f0f # | ^~~~~~~~~~~~~~~~~~~~~~~ # 661| "\x00\x1f\x09\x00\x03\x01", 0x1f0d # 662| "\x00\x1f\x08\x00\x03\x42", 0x1f0e # 663|-> "\x00\x1f\x09\x00\x03\x42", 0x1f0f # 664| "\x00\x03\xb5\x00\x03\x13", 0x1f10 # 665| "\x00\x03\xb5\x00\x03\x14", 0x1f11 Error: COMPILER_WARNING: [#def855] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:664:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 664 | "\x00\x03\xb5\x00\x03\x13", 0x1f10 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 662| "\x00\x1f\x08\x00\x03\x42", 0x1f0e # 663| "\x00\x1f\x09\x00\x03\x42", 0x1f0f # 664|-> "\x00\x03\xb5\x00\x03\x13", 0x1f10 # 665| "\x00\x03\xb5\x00\x03\x14", 0x1f11 # 666| "\x00\x1f\x10\x00\x03\x00", 0x1f12 Error: COMPILER_WARNING: [#def856] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:666:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 666 | "\x00\x1f\x10\x00\x03\x00", 0x1f12 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 664| "\x00\x03\xb5\x00\x03\x13", 0x1f10 # 665| "\x00\x03\xb5\x00\x03\x14", 0x1f11 # 666|-> "\x00\x1f\x10\x00\x03\x00", 0x1f12 # 667| "\x00\x1f\x11\x00\x03\x00", 0x1f13 # 668| "\x00\x1f\x10\x00\x03\x01", 0x1f14 Error: COMPILER_WARNING: [#def857] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:667:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 667 | "\x00\x1f\x11\x00\x03\x00", 0x1f13 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 665| "\x00\x03\xb5\x00\x03\x14", 0x1f11 # 666| "\x00\x1f\x10\x00\x03\x00", 0x1f12 # 667|-> "\x00\x1f\x11\x00\x03\x00", 0x1f13 # 668| "\x00\x1f\x10\x00\x03\x01", 0x1f14 # 669| "\x00\x1f\x11\x00\x03\x01", 0x1f15 Error: COMPILER_WARNING: [#def858] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:668:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 668 | "\x00\x1f\x10\x00\x03\x01", 0x1f14 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 666| "\x00\x1f\x10\x00\x03\x00", 0x1f12 # 667| "\x00\x1f\x11\x00\x03\x00", 0x1f13 # 668|-> "\x00\x1f\x10\x00\x03\x01", 0x1f14 # 669| "\x00\x1f\x11\x00\x03\x01", 0x1f15 # 670| "\x00\x03\x95\x00\x03\x13", 0x1f18 Error: COMPILER_WARNING: [#def859] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:669:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 669 | "\x00\x1f\x11\x00\x03\x01", 0x1f15 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 667| "\x00\x1f\x11\x00\x03\x00", 0x1f13 # 668| "\x00\x1f\x10\x00\x03\x01", 0x1f14 # 669|-> "\x00\x1f\x11\x00\x03\x01", 0x1f15 # 670| "\x00\x03\x95\x00\x03\x13", 0x1f18 # 671| "\x00\x03\x95\x00\x03\x14", 0x1f19 Error: COMPILER_WARNING: [#def860] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:670:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 670 | "\x00\x03\x95\x00\x03\x13", 0x1f18 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 668| "\x00\x1f\x10\x00\x03\x01", 0x1f14 # 669| "\x00\x1f\x11\x00\x03\x01", 0x1f15 # 670|-> "\x00\x03\x95\x00\x03\x13", 0x1f18 # 671| "\x00\x03\x95\x00\x03\x14", 0x1f19 # 672| "\x00\x1f\x18\x00\x03\x00", 0x1f1a Error: COMPILER_WARNING (CWE-909): [#def861] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:671:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 671 | "\x00\x03\x95\x00\x03\x14", 0x1f19 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 669| "\x00\x1f\x11\x00\x03\x01", 0x1f15 # 670| "\x00\x03\x95\x00\x03\x13", 0x1f18 # 671|-> "\x00\x03\x95\x00\x03\x14", 0x1f19 # 672| "\x00\x1f\x18\x00\x03\x00", 0x1f1a # 673| "\x00\x1f\x19\x00\x03\x00", 0x1f1b Error: COMPILER_WARNING: [#def862] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:672:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 672 | "\x00\x1f\x18\x00\x03\x00", 0x1f1a # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 670| "\x00\x03\x95\x00\x03\x13", 0x1f18 # 671| "\x00\x03\x95\x00\x03\x14", 0x1f19 # 672|-> "\x00\x1f\x18\x00\x03\x00", 0x1f1a # 673| "\x00\x1f\x19\x00\x03\x00", 0x1f1b # 674| "\x00\x1f\x18\x00\x03\x01", 0x1f1c Error: COMPILER_WARNING: [#def863] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:673:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 673 | "\x00\x1f\x19\x00\x03\x00", 0x1f1b # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 671| "\x00\x03\x95\x00\x03\x14", 0x1f19 # 672| "\x00\x1f\x18\x00\x03\x00", 0x1f1a # 673|-> "\x00\x1f\x19\x00\x03\x00", 0x1f1b # 674| "\x00\x1f\x18\x00\x03\x01", 0x1f1c # 675| "\x00\x1f\x19\x00\x03\x01", 0x1f1d Error: COMPILER_WARNING: [#def864] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:674:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 674 | "\x00\x1f\x18\x00\x03\x01", 0x1f1c # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 672| "\x00\x1f\x18\x00\x03\x00", 0x1f1a # 673| "\x00\x1f\x19\x00\x03\x00", 0x1f1b # 674|-> "\x00\x1f\x18\x00\x03\x01", 0x1f1c # 675| "\x00\x1f\x19\x00\x03\x01", 0x1f1d # 676| "\x00\x03\xb7\x00\x03\x13", 0x1f20 Error: COMPILER_WARNING: [#def865] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:675:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 675 | "\x00\x1f\x19\x00\x03\x01", 0x1f1d # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 673| "\x00\x1f\x19\x00\x03\x00", 0x1f1b # 674| "\x00\x1f\x18\x00\x03\x01", 0x1f1c # 675|-> "\x00\x1f\x19\x00\x03\x01", 0x1f1d # 676| "\x00\x03\xb7\x00\x03\x13", 0x1f20 # 677| "\x00\x03\xb7\x00\x03\x14", 0x1f21 Error: COMPILER_WARNING: [#def866] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:676:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 676 | "\x00\x03\xb7\x00\x03\x13", 0x1f20 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 674| "\x00\x1f\x18\x00\x03\x01", 0x1f1c # 675| "\x00\x1f\x19\x00\x03\x01", 0x1f1d # 676|-> "\x00\x03\xb7\x00\x03\x13", 0x1f20 # 677| "\x00\x03\xb7\x00\x03\x14", 0x1f21 # 678| "\x00\x1f\x20\x00\x03\x00", 0x1f22 Error: COMPILER_WARNING: [#def867] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:677:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 677 | "\x00\x03\xb7\x00\x03\x14", 0x1f21 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 675| "\x00\x1f\x19\x00\x03\x01", 0x1f1d # 676| "\x00\x03\xb7\x00\x03\x13", 0x1f20 # 677|-> "\x00\x03\xb7\x00\x03\x14", 0x1f21 # 678| "\x00\x1f\x20\x00\x03\x00", 0x1f22 # 679| "\x00\x1f\x21\x00\x03\x00", 0x1f23 Error: COMPILER_WARNING: [#def868] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:678:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 678 | "\x00\x1f\x20\x00\x03\x00", 0x1f22 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 676| "\x00\x03\xb7\x00\x03\x13", 0x1f20 # 677| "\x00\x03\xb7\x00\x03\x14", 0x1f21 # 678|-> "\x00\x1f\x20\x00\x03\x00", 0x1f22 # 679| "\x00\x1f\x21\x00\x03\x00", 0x1f23 # 680| "\x00\x1f\x20\x00\x03\x01", 0x1f24 Error: COMPILER_WARNING: [#def869] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:679:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 679 | "\x00\x1f\x21\x00\x03\x00", 0x1f23 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 677| "\x00\x03\xb7\x00\x03\x14", 0x1f21 # 678| "\x00\x1f\x20\x00\x03\x00", 0x1f22 # 679|-> "\x00\x1f\x21\x00\x03\x00", 0x1f23 # 680| "\x00\x1f\x20\x00\x03\x01", 0x1f24 # 681| "\x00\x1f\x21\x00\x03\x01", 0x1f25 Error: COMPILER_WARNING: [#def870] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:680:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 680 | "\x00\x1f\x20\x00\x03\x01", 0x1f24 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 678| "\x00\x1f\x20\x00\x03\x00", 0x1f22 # 679| "\x00\x1f\x21\x00\x03\x00", 0x1f23 # 680|-> "\x00\x1f\x20\x00\x03\x01", 0x1f24 # 681| "\x00\x1f\x21\x00\x03\x01", 0x1f25 # 682| "\x00\x1f\x20\x00\x03\x42", 0x1f26 Error: COMPILER_WARNING: [#def871] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:681:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 681 | "\x00\x1f\x21\x00\x03\x01", 0x1f25 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 679| "\x00\x1f\x21\x00\x03\x00", 0x1f23 # 680| "\x00\x1f\x20\x00\x03\x01", 0x1f24 # 681|-> "\x00\x1f\x21\x00\x03\x01", 0x1f25 # 682| "\x00\x1f\x20\x00\x03\x42", 0x1f26 # 683| "\x00\x1f\x21\x00\x03\x42", 0x1f27 Error: COMPILER_WARNING: [#def872] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:682:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 682 | "\x00\x1f\x20\x00\x03\x42", 0x1f26 # | ^~~~~~~~~~~~~~~~~~~~ # 680| "\x00\x1f\x20\x00\x03\x01", 0x1f24 # 681| "\x00\x1f\x21\x00\x03\x01", 0x1f25 # 682|-> "\x00\x1f\x20\x00\x03\x42", 0x1f26 # 683| "\x00\x1f\x21\x00\x03\x42", 0x1f27 # 684| "\x00\x03\x97\x00\x03\x13", 0x1f28 Error: COMPILER_WARNING: [#def873] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:683:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 683 | "\x00\x1f\x21\x00\x03\x42", 0x1f27 # | ^~~~~~~~~~~~~~~~~~~~ # 681| "\x00\x1f\x21\x00\x03\x01", 0x1f25 # 682| "\x00\x1f\x20\x00\x03\x42", 0x1f26 # 683|-> "\x00\x1f\x21\x00\x03\x42", 0x1f27 # 684| "\x00\x03\x97\x00\x03\x13", 0x1f28 # 685| "\x00\x03\x97\x00\x03\x14", 0x1f29 Error: COMPILER_WARNING: [#def874] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:684:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 684 | "\x00\x03\x97\x00\x03\x13", 0x1f28 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 682| "\x00\x1f\x20\x00\x03\x42", 0x1f26 # 683| "\x00\x1f\x21\x00\x03\x42", 0x1f27 # 684|-> "\x00\x03\x97\x00\x03\x13", 0x1f28 # 685| "\x00\x03\x97\x00\x03\x14", 0x1f29 # 686| "\x00\x1f\x28\x00\x03\x00", 0x1f2a Error: COMPILER_WARNING (CWE-909): [#def875] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:686:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 686 | "\x00\x1f\x28\x00\x03\x00", 0x1f2a # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 684| "\x00\x03\x97\x00\x03\x13", 0x1f28 # 685| "\x00\x03\x97\x00\x03\x14", 0x1f29 # 686|-> "\x00\x1f\x28\x00\x03\x00", 0x1f2a # 687| "\x00\x1f\x29\x00\x03\x00", 0x1f2b # 688| "\x00\x1f\x28\x00\x03\x01", 0x1f2c Error: COMPILER_WARNING: [#def876] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:686:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 686 | "\x00\x1f\x28\x00\x03\x00", 0x1f2a # | ^~~~~~~~~~~~~~~~~~~~~~~ # 684| "\x00\x03\x97\x00\x03\x13", 0x1f28 # 685| "\x00\x03\x97\x00\x03\x14", 0x1f29 # 686|-> "\x00\x1f\x28\x00\x03\x00", 0x1f2a # 687| "\x00\x1f\x29\x00\x03\x00", 0x1f2b # 688| "\x00\x1f\x28\x00\x03\x01", 0x1f2c Error: COMPILER_WARNING: [#def877] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:687:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 687 | "\x00\x1f\x29\x00\x03\x00", 0x1f2b # | ^~~~~~~~~~~~~~~~~~~~~~~ # 685| "\x00\x03\x97\x00\x03\x14", 0x1f29 # 686| "\x00\x1f\x28\x00\x03\x00", 0x1f2a # 687|-> "\x00\x1f\x29\x00\x03\x00", 0x1f2b # 688| "\x00\x1f\x28\x00\x03\x01", 0x1f2c # 689| "\x00\x1f\x29\x00\x03\x01", 0x1f2d Error: COMPILER_WARNING: [#def878] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:688:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 688 | "\x00\x1f\x28\x00\x03\x01", 0x1f2c # | ^~~~~~~~~~~~~~~~~~~~~~~ # 686| "\x00\x1f\x28\x00\x03\x00", 0x1f2a # 687| "\x00\x1f\x29\x00\x03\x00", 0x1f2b # 688|-> "\x00\x1f\x28\x00\x03\x01", 0x1f2c # 689| "\x00\x1f\x29\x00\x03\x01", 0x1f2d # 690| "\x00\x1f\x28\x00\x03\x42", 0x1f2e Error: COMPILER_WARNING: [#def879] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:689:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 689 | "\x00\x1f\x29\x00\x03\x01", 0x1f2d # | ^~~~~~~~~~~~~~~~~~~~~~~ # 687| "\x00\x1f\x29\x00\x03\x00", 0x1f2b # 688| "\x00\x1f\x28\x00\x03\x01", 0x1f2c # 689|-> "\x00\x1f\x29\x00\x03\x01", 0x1f2d # 690| "\x00\x1f\x28\x00\x03\x42", 0x1f2e # 691| "\x00\x1f\x29\x00\x03\x42", 0x1f2f Error: COMPILER_WARNING: [#def880] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:690:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 690 | "\x00\x1f\x28\x00\x03\x42", 0x1f2e # | ^~~~~~~~~~~~~~~~~~~~ # 688| "\x00\x1f\x28\x00\x03\x01", 0x1f2c # 689| "\x00\x1f\x29\x00\x03\x01", 0x1f2d # 690|-> "\x00\x1f\x28\x00\x03\x42", 0x1f2e # 691| "\x00\x1f\x29\x00\x03\x42", 0x1f2f # 692| "\x00\x03\xb9\x00\x03\x13", 0x1f30 Error: COMPILER_WARNING: [#def881] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:691:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 691 | "\x00\x1f\x29\x00\x03\x42", 0x1f2f # | ^~~~~~~~~~~~~~~~~~~~ # 689| "\x00\x1f\x29\x00\x03\x01", 0x1f2d # 690| "\x00\x1f\x28\x00\x03\x42", 0x1f2e # 691|-> "\x00\x1f\x29\x00\x03\x42", 0x1f2f # 692| "\x00\x03\xb9\x00\x03\x13", 0x1f30 # 693| "\x00\x03\xb9\x00\x03\x14", 0x1f31 Error: COMPILER_WARNING: [#def882] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:692:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 692 | "\x00\x03\xb9\x00\x03\x13", 0x1f30 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 690| "\x00\x1f\x28\x00\x03\x42", 0x1f2e # 691| "\x00\x1f\x29\x00\x03\x42", 0x1f2f # 692|-> "\x00\x03\xb9\x00\x03\x13", 0x1f30 # 693| "\x00\x03\xb9\x00\x03\x14", 0x1f31 # 694| "\x00\x1f\x30\x00\x03\x00", 0x1f32 Error: COMPILER_WARNING: [#def883] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:693:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 693 | "\x00\x03\xb9\x00\x03\x14", 0x1f31 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 691| "\x00\x1f\x29\x00\x03\x42", 0x1f2f # 692| "\x00\x03\xb9\x00\x03\x13", 0x1f30 # 693|-> "\x00\x03\xb9\x00\x03\x14", 0x1f31 # 694| "\x00\x1f\x30\x00\x03\x00", 0x1f32 # 695| "\x00\x1f\x31\x00\x03\x00", 0x1f33 Error: COMPILER_WARNING: [#def884] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:694:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 694 | "\x00\x1f\x30\x00\x03\x00", 0x1f32 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 692| "\x00\x03\xb9\x00\x03\x13", 0x1f30 # 693| "\x00\x03\xb9\x00\x03\x14", 0x1f31 # 694|-> "\x00\x1f\x30\x00\x03\x00", 0x1f32 # 695| "\x00\x1f\x31\x00\x03\x00", 0x1f33 # 696| "\x00\x1f\x30\x00\x03\x01", 0x1f34 Error: COMPILER_WARNING: [#def885] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:695:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 695 | "\x00\x1f\x31\x00\x03\x00", 0x1f33 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 693| "\x00\x03\xb9\x00\x03\x14", 0x1f31 # 694| "\x00\x1f\x30\x00\x03\x00", 0x1f32 # 695|-> "\x00\x1f\x31\x00\x03\x00", 0x1f33 # 696| "\x00\x1f\x30\x00\x03\x01", 0x1f34 # 697| "\x00\x1f\x31\x00\x03\x01", 0x1f35 Error: COMPILER_WARNING: [#def886] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:696:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 696 | "\x00\x1f\x30\x00\x03\x01", 0x1f34 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 694| "\x00\x1f\x30\x00\x03\x00", 0x1f32 # 695| "\x00\x1f\x31\x00\x03\x00", 0x1f33 # 696|-> "\x00\x1f\x30\x00\x03\x01", 0x1f34 # 697| "\x00\x1f\x31\x00\x03\x01", 0x1f35 # 698| "\x00\x1f\x30\x00\x03\x42", 0x1f36 Error: COMPILER_WARNING: [#def887] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:697:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 697 | "\x00\x1f\x31\x00\x03\x01", 0x1f35 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 695| "\x00\x1f\x31\x00\x03\x00", 0x1f33 # 696| "\x00\x1f\x30\x00\x03\x01", 0x1f34 # 697|-> "\x00\x1f\x31\x00\x03\x01", 0x1f35 # 698| "\x00\x1f\x30\x00\x03\x42", 0x1f36 # 699| "\x00\x1f\x31\x00\x03\x42", 0x1f37 Error: COMPILER_WARNING: [#def888] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:698:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 698 | "\x00\x1f\x30\x00\x03\x42", 0x1f36 # | ^~~~~~~~~~~~~~~~~~~~ # 696| "\x00\x1f\x30\x00\x03\x01", 0x1f34 # 697| "\x00\x1f\x31\x00\x03\x01", 0x1f35 # 698|-> "\x00\x1f\x30\x00\x03\x42", 0x1f36 # 699| "\x00\x1f\x31\x00\x03\x42", 0x1f37 # 700| "\x00\x03\x99\x00\x03\x13", 0x1f38 Error: COMPILER_WARNING: [#def889] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:699:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 699 | "\x00\x1f\x31\x00\x03\x42", 0x1f37 # | ^~~~~~~~~~~~~~~~~~~~ # 697| "\x00\x1f\x31\x00\x03\x01", 0x1f35 # 698| "\x00\x1f\x30\x00\x03\x42", 0x1f36 # 699|-> "\x00\x1f\x31\x00\x03\x42", 0x1f37 # 700| "\x00\x03\x99\x00\x03\x13", 0x1f38 # 701| "\x00\x03\x99\x00\x03\x14", 0x1f39 Error: COMPILER_WARNING: [#def890] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:700:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 700 | "\x00\x03\x99\x00\x03\x13", 0x1f38 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 698| "\x00\x1f\x30\x00\x03\x42", 0x1f36 # 699| "\x00\x1f\x31\x00\x03\x42", 0x1f37 # 700|-> "\x00\x03\x99\x00\x03\x13", 0x1f38 # 701| "\x00\x03\x99\x00\x03\x14", 0x1f39 # 702| "\x00\x1f\x38\x00\x03\x00", 0x1f3a Error: COMPILER_WARNING (CWE-909): [#def891] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:702:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 702 | "\x00\x1f\x38\x00\x03\x00", 0x1f3a # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 700| "\x00\x03\x99\x00\x03\x13", 0x1f38 # 701| "\x00\x03\x99\x00\x03\x14", 0x1f39 # 702|-> "\x00\x1f\x38\x00\x03\x00", 0x1f3a # 703| "\x00\x1f\x39\x00\x03\x00", 0x1f3b # 704| "\x00\x1f\x38\x00\x03\x01", 0x1f3c Error: COMPILER_WARNING: [#def892] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:702:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 702 | "\x00\x1f\x38\x00\x03\x00", 0x1f3a # | ^~~~~~~~~~~~~~~~~~~~~~~ # 700| "\x00\x03\x99\x00\x03\x13", 0x1f38 # 701| "\x00\x03\x99\x00\x03\x14", 0x1f39 # 702|-> "\x00\x1f\x38\x00\x03\x00", 0x1f3a # 703| "\x00\x1f\x39\x00\x03\x00", 0x1f3b # 704| "\x00\x1f\x38\x00\x03\x01", 0x1f3c Error: COMPILER_WARNING: [#def893] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:703:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 703 | "\x00\x1f\x39\x00\x03\x00", 0x1f3b # | ^~~~~~~~~~~~~~~~~~~~~~~ # 701| "\x00\x03\x99\x00\x03\x14", 0x1f39 # 702| "\x00\x1f\x38\x00\x03\x00", 0x1f3a # 703|-> "\x00\x1f\x39\x00\x03\x00", 0x1f3b # 704| "\x00\x1f\x38\x00\x03\x01", 0x1f3c # 705| "\x00\x1f\x39\x00\x03\x01", 0x1f3d Error: COMPILER_WARNING: [#def894] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:704:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 704 | "\x00\x1f\x38\x00\x03\x01", 0x1f3c # | ^~~~~~~~~~~~~~~~~~~~~~~ # 702| "\x00\x1f\x38\x00\x03\x00", 0x1f3a # 703| "\x00\x1f\x39\x00\x03\x00", 0x1f3b # 704|-> "\x00\x1f\x38\x00\x03\x01", 0x1f3c # 705| "\x00\x1f\x39\x00\x03\x01", 0x1f3d # 706| "\x00\x1f\x38\x00\x03\x42", 0x1f3e Error: COMPILER_WARNING: [#def895] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:705:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 705 | "\x00\x1f\x39\x00\x03\x01", 0x1f3d # | ^~~~~~~~~~~~~~~~~~~~~~~ # 703| "\x00\x1f\x39\x00\x03\x00", 0x1f3b # 704| "\x00\x1f\x38\x00\x03\x01", 0x1f3c # 705|-> "\x00\x1f\x39\x00\x03\x01", 0x1f3d # 706| "\x00\x1f\x38\x00\x03\x42", 0x1f3e # 707| "\x00\x1f\x39\x00\x03\x42", 0x1f3f Error: COMPILER_WARNING: [#def896] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:706:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 706 | "\x00\x1f\x38\x00\x03\x42", 0x1f3e # | ^~~~~~~~~~~~~~~~~~~~ # 704| "\x00\x1f\x38\x00\x03\x01", 0x1f3c # 705| "\x00\x1f\x39\x00\x03\x01", 0x1f3d # 706|-> "\x00\x1f\x38\x00\x03\x42", 0x1f3e # 707| "\x00\x1f\x39\x00\x03\x42", 0x1f3f # 708| "\x00\x03\xbf\x00\x03\x13", 0x1f40 Error: COMPILER_WARNING: [#def897] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:707:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 707 | "\x00\x1f\x39\x00\x03\x42", 0x1f3f # | ^~~~~~~~~~~~~~~~~~~~ # 705| "\x00\x1f\x39\x00\x03\x01", 0x1f3d # 706| "\x00\x1f\x38\x00\x03\x42", 0x1f3e # 707|-> "\x00\x1f\x39\x00\x03\x42", 0x1f3f # 708| "\x00\x03\xbf\x00\x03\x13", 0x1f40 # 709| "\x00\x03\xbf\x00\x03\x14", 0x1f41 Error: COMPILER_WARNING: [#def898] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:708:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 708 | "\x00\x03\xbf\x00\x03\x13", 0x1f40 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 706| "\x00\x1f\x38\x00\x03\x42", 0x1f3e # 707| "\x00\x1f\x39\x00\x03\x42", 0x1f3f # 708|-> "\x00\x03\xbf\x00\x03\x13", 0x1f40 # 709| "\x00\x03\xbf\x00\x03\x14", 0x1f41 # 710| "\x00\x1f\x40\x00\x03\x00", 0x1f42 Error: COMPILER_WARNING: [#def899] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:709:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 709 | "\x00\x03\xbf\x00\x03\x14", 0x1f41 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 707| "\x00\x1f\x39\x00\x03\x42", 0x1f3f # 708| "\x00\x03\xbf\x00\x03\x13", 0x1f40 # 709|-> "\x00\x03\xbf\x00\x03\x14", 0x1f41 # 710| "\x00\x1f\x40\x00\x03\x00", 0x1f42 # 711| "\x00\x1f\x41\x00\x03\x00", 0x1f43 Error: COMPILER_WARNING (CWE-909): [#def900] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:710:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 710 | "\x00\x1f\x40\x00\x03\x00", 0x1f42 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 708| "\x00\x03\xbf\x00\x03\x13", 0x1f40 # 709| "\x00\x03\xbf\x00\x03\x14", 0x1f41 # 710|-> "\x00\x1f\x40\x00\x03\x00", 0x1f42 # 711| "\x00\x1f\x41\x00\x03\x00", 0x1f43 # 712| "\x00\x1f\x40\x00\x03\x01", 0x1f44 Error: COMPILER_WARNING: [#def901] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:710:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 710 | "\x00\x1f\x40\x00\x03\x00", 0x1f42 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 708| "\x00\x03\xbf\x00\x03\x13", 0x1f40 # 709| "\x00\x03\xbf\x00\x03\x14", 0x1f41 # 710|-> "\x00\x1f\x40\x00\x03\x00", 0x1f42 # 711| "\x00\x1f\x41\x00\x03\x00", 0x1f43 # 712| "\x00\x1f\x40\x00\x03\x01", 0x1f44 Error: COMPILER_WARNING: [#def902] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:711:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 711 | "\x00\x1f\x41\x00\x03\x00", 0x1f43 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 709| "\x00\x03\xbf\x00\x03\x14", 0x1f41 # 710| "\x00\x1f\x40\x00\x03\x00", 0x1f42 # 711|-> "\x00\x1f\x41\x00\x03\x00", 0x1f43 # 712| "\x00\x1f\x40\x00\x03\x01", 0x1f44 # 713| "\x00\x1f\x41\x00\x03\x01", 0x1f45 Error: COMPILER_WARNING: [#def903] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:712:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 712 | "\x00\x1f\x40\x00\x03\x01", 0x1f44 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 710| "\x00\x1f\x40\x00\x03\x00", 0x1f42 # 711| "\x00\x1f\x41\x00\x03\x00", 0x1f43 # 712|-> "\x00\x1f\x40\x00\x03\x01", 0x1f44 # 713| "\x00\x1f\x41\x00\x03\x01", 0x1f45 # 714| "\x00\x03\x9f\x00\x03\x13", 0x1f48 Error: COMPILER_WARNING: [#def904] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:713:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 713 | "\x00\x1f\x41\x00\x03\x01", 0x1f45 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 711| "\x00\x1f\x41\x00\x03\x00", 0x1f43 # 712| "\x00\x1f\x40\x00\x03\x01", 0x1f44 # 713|-> "\x00\x1f\x41\x00\x03\x01", 0x1f45 # 714| "\x00\x03\x9f\x00\x03\x13", 0x1f48 # 715| "\x00\x03\x9f\x00\x03\x14", 0x1f49 Error: COMPILER_WARNING: [#def905] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:714:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 714 | "\x00\x03\x9f\x00\x03\x13", 0x1f48 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 712| "\x00\x1f\x40\x00\x03\x01", 0x1f44 # 713| "\x00\x1f\x41\x00\x03\x01", 0x1f45 # 714|-> "\x00\x03\x9f\x00\x03\x13", 0x1f48 # 715| "\x00\x03\x9f\x00\x03\x14", 0x1f49 # 716| "\x00\x1f\x48\x00\x03\x00", 0x1f4a Error: COMPILER_WARNING (CWE-909): [#def906] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:716:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 716 | "\x00\x1f\x48\x00\x03\x00", 0x1f4a # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 714| "\x00\x03\x9f\x00\x03\x13", 0x1f48 # 715| "\x00\x03\x9f\x00\x03\x14", 0x1f49 # 716|-> "\x00\x1f\x48\x00\x03\x00", 0x1f4a # 717| "\x00\x1f\x49\x00\x03\x00", 0x1f4b # 718| "\x00\x1f\x48\x00\x03\x01", 0x1f4c Error: COMPILER_WARNING: [#def907] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:716:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 716 | "\x00\x1f\x48\x00\x03\x00", 0x1f4a # | ^~~~~~~~~~~~~~~~~~~~~~~ # 714| "\x00\x03\x9f\x00\x03\x13", 0x1f48 # 715| "\x00\x03\x9f\x00\x03\x14", 0x1f49 # 716|-> "\x00\x1f\x48\x00\x03\x00", 0x1f4a # 717| "\x00\x1f\x49\x00\x03\x00", 0x1f4b # 718| "\x00\x1f\x48\x00\x03\x01", 0x1f4c Error: COMPILER_WARNING (CWE-909): [#def908] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:717:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 717 | "\x00\x1f\x49\x00\x03\x00", 0x1f4b # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 715| "\x00\x03\x9f\x00\x03\x14", 0x1f49 # 716| "\x00\x1f\x48\x00\x03\x00", 0x1f4a # 717|-> "\x00\x1f\x49\x00\x03\x00", 0x1f4b # 718| "\x00\x1f\x48\x00\x03\x01", 0x1f4c # 719| "\x00\x1f\x49\x00\x03\x01", 0x1f4d Error: COMPILER_WARNING: [#def909] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:717:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 717 | "\x00\x1f\x49\x00\x03\x00", 0x1f4b # | ^~~~~~~~~~~~~~~~~~~~~~~ # 715| "\x00\x03\x9f\x00\x03\x14", 0x1f49 # 716| "\x00\x1f\x48\x00\x03\x00", 0x1f4a # 717|-> "\x00\x1f\x49\x00\x03\x00", 0x1f4b # 718| "\x00\x1f\x48\x00\x03\x01", 0x1f4c # 719| "\x00\x1f\x49\x00\x03\x01", 0x1f4d Error: COMPILER_WARNING: [#def910] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:718:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 718 | "\x00\x1f\x48\x00\x03\x01", 0x1f4c # | ^~~~~~~~~~~~~~~~~~~~~~~ # 716| "\x00\x1f\x48\x00\x03\x00", 0x1f4a # 717| "\x00\x1f\x49\x00\x03\x00", 0x1f4b # 718|-> "\x00\x1f\x48\x00\x03\x01", 0x1f4c # 719| "\x00\x1f\x49\x00\x03\x01", 0x1f4d # 720| "\x00\x03\xc5\x00\x03\x13", 0x1f50 Error: COMPILER_WARNING: [#def911] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:719:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 719 | "\x00\x1f\x49\x00\x03\x01", 0x1f4d # | ^~~~~~~~~~~~~~~~~~~~~~~ # 717| "\x00\x1f\x49\x00\x03\x00", 0x1f4b # 718| "\x00\x1f\x48\x00\x03\x01", 0x1f4c # 719|-> "\x00\x1f\x49\x00\x03\x01", 0x1f4d # 720| "\x00\x03\xc5\x00\x03\x13", 0x1f50 # 721| "\x00\x03\xc5\x00\x03\x14", 0x1f51 Error: COMPILER_WARNING: [#def912] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:720:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 720 | "\x00\x03\xc5\x00\x03\x13", 0x1f50 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 718| "\x00\x1f\x48\x00\x03\x01", 0x1f4c # 719| "\x00\x1f\x49\x00\x03\x01", 0x1f4d # 720|-> "\x00\x03\xc5\x00\x03\x13", 0x1f50 # 721| "\x00\x03\xc5\x00\x03\x14", 0x1f51 # 722| "\x00\x1f\x50\x00\x03\x00", 0x1f52 Error: COMPILER_WARNING: [#def913] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:721:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 721 | "\x00\x03\xc5\x00\x03\x14", 0x1f51 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 719| "\x00\x1f\x49\x00\x03\x01", 0x1f4d # 720| "\x00\x03\xc5\x00\x03\x13", 0x1f50 # 721|-> "\x00\x03\xc5\x00\x03\x14", 0x1f51 # 722| "\x00\x1f\x50\x00\x03\x00", 0x1f52 # 723| "\x00\x1f\x51\x00\x03\x00", 0x1f53 Error: COMPILER_WARNING: [#def914] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:722:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 722 | "\x00\x1f\x50\x00\x03\x00", 0x1f52 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 720| "\x00\x03\xc5\x00\x03\x13", 0x1f50 # 721| "\x00\x03\xc5\x00\x03\x14", 0x1f51 # 722|-> "\x00\x1f\x50\x00\x03\x00", 0x1f52 # 723| "\x00\x1f\x51\x00\x03\x00", 0x1f53 # 724| "\x00\x1f\x50\x00\x03\x01", 0x1f54 Error: COMPILER_WARNING: [#def915] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:723:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 723 | "\x00\x1f\x51\x00\x03\x00", 0x1f53 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 721| "\x00\x03\xc5\x00\x03\x14", 0x1f51 # 722| "\x00\x1f\x50\x00\x03\x00", 0x1f52 # 723|-> "\x00\x1f\x51\x00\x03\x00", 0x1f53 # 724| "\x00\x1f\x50\x00\x03\x01", 0x1f54 # 725| "\x00\x1f\x51\x00\x03\x01", 0x1f55 Error: COMPILER_WARNING: [#def916] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:724:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 724 | "\x00\x1f\x50\x00\x03\x01", 0x1f54 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 722| "\x00\x1f\x50\x00\x03\x00", 0x1f52 # 723| "\x00\x1f\x51\x00\x03\x00", 0x1f53 # 724|-> "\x00\x1f\x50\x00\x03\x01", 0x1f54 # 725| "\x00\x1f\x51\x00\x03\x01", 0x1f55 # 726| "\x00\x1f\x50\x00\x03\x42", 0x1f56 Error: COMPILER_WARNING: [#def917] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:725:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 725 | "\x00\x1f\x51\x00\x03\x01", 0x1f55 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 723| "\x00\x1f\x51\x00\x03\x00", 0x1f53 # 724| "\x00\x1f\x50\x00\x03\x01", 0x1f54 # 725|-> "\x00\x1f\x51\x00\x03\x01", 0x1f55 # 726| "\x00\x1f\x50\x00\x03\x42", 0x1f56 # 727| "\x00\x1f\x51\x00\x03\x42", 0x1f57 Error: COMPILER_WARNING: [#def918] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:726:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 726 | "\x00\x1f\x50\x00\x03\x42", 0x1f56 # | ^~~~~~~~~~~~~~~~~~~~ # 724| "\x00\x1f\x50\x00\x03\x01", 0x1f54 # 725| "\x00\x1f\x51\x00\x03\x01", 0x1f55 # 726|-> "\x00\x1f\x50\x00\x03\x42", 0x1f56 # 727| "\x00\x1f\x51\x00\x03\x42", 0x1f57 # 728| "\x00\x03\xa5\x00\x03\x14", 0x1f59 Error: COMPILER_WARNING (CWE-909): [#def919] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:727:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 727 | "\x00\x1f\x51\x00\x03\x42", 0x1f57 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 725| "\x00\x1f\x51\x00\x03\x01", 0x1f55 # 726| "\x00\x1f\x50\x00\x03\x42", 0x1f56 # 727|-> "\x00\x1f\x51\x00\x03\x42", 0x1f57 # 728| "\x00\x03\xa5\x00\x03\x14", 0x1f59 # 729| "\x00\x1f\x59\x00\x03\x00", 0x1f5b Error: COMPILER_WARNING: [#def920] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:727:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 727 | "\x00\x1f\x51\x00\x03\x42", 0x1f57 # | ^~~~~~~~~~~~~~~~~~~~ # 725| "\x00\x1f\x51\x00\x03\x01", 0x1f55 # 726| "\x00\x1f\x50\x00\x03\x42", 0x1f56 # 727|-> "\x00\x1f\x51\x00\x03\x42", 0x1f57 # 728| "\x00\x03\xa5\x00\x03\x14", 0x1f59 # 729| "\x00\x1f\x59\x00\x03\x00", 0x1f5b Error: COMPILER_WARNING (CWE-909): [#def921] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:729:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 729 | "\x00\x1f\x59\x00\x03\x00", 0x1f5b # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 727| "\x00\x1f\x51\x00\x03\x42", 0x1f57 # 728| "\x00\x03\xa5\x00\x03\x14", 0x1f59 # 729|-> "\x00\x1f\x59\x00\x03\x00", 0x1f5b # 730| "\x00\x1f\x59\x00\x03\x01", 0x1f5d # 731| "\x00\x1f\x59\x00\x03\x42", 0x1f5f Error: COMPILER_WARNING: [#def922] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:729:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 729 | "\x00\x1f\x59\x00\x03\x00", 0x1f5b # | ^~~~~~~~~~~~~~~~~~~~~~~ # 727| "\x00\x1f\x51\x00\x03\x42", 0x1f57 # 728| "\x00\x03\xa5\x00\x03\x14", 0x1f59 # 729|-> "\x00\x1f\x59\x00\x03\x00", 0x1f5b # 730| "\x00\x1f\x59\x00\x03\x01", 0x1f5d # 731| "\x00\x1f\x59\x00\x03\x42", 0x1f5f Error: COMPILER_WARNING: [#def923] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:730:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 730 | "\x00\x1f\x59\x00\x03\x01", 0x1f5d # | ^~~~~~~~~~~~~~~~~~~~~~~ # 728| "\x00\x03\xa5\x00\x03\x14", 0x1f59 # 729| "\x00\x1f\x59\x00\x03\x00", 0x1f5b # 730|-> "\x00\x1f\x59\x00\x03\x01", 0x1f5d # 731| "\x00\x1f\x59\x00\x03\x42", 0x1f5f # 732| "\x00\x03\xc9\x00\x03\x13", 0x1f60 Error: COMPILER_WARNING: [#def924] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:731:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 731 | "\x00\x1f\x59\x00\x03\x42", 0x1f5f # | ^~~~~~~~~~~~~~~~~~~~ # 729| "\x00\x1f\x59\x00\x03\x00", 0x1f5b # 730| "\x00\x1f\x59\x00\x03\x01", 0x1f5d # 731|-> "\x00\x1f\x59\x00\x03\x42", 0x1f5f # 732| "\x00\x03\xc9\x00\x03\x13", 0x1f60 # 733| "\x00\x03\xc9\x00\x03\x14", 0x1f61 Error: COMPILER_WARNING: [#def925] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:732:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 732 | "\x00\x03\xc9\x00\x03\x13", 0x1f60 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 730| "\x00\x1f\x59\x00\x03\x01", 0x1f5d # 731| "\x00\x1f\x59\x00\x03\x42", 0x1f5f # 732|-> "\x00\x03\xc9\x00\x03\x13", 0x1f60 # 733| "\x00\x03\xc9\x00\x03\x14", 0x1f61 # 734| "\x00\x1f\x60\x00\x03\x00", 0x1f62 Error: COMPILER_WARNING (CWE-909): [#def926] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:733:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 733 | "\x00\x03\xc9\x00\x03\x14", 0x1f61 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 731| "\x00\x1f\x59\x00\x03\x42", 0x1f5f # 732| "\x00\x03\xc9\x00\x03\x13", 0x1f60 # 733|-> "\x00\x03\xc9\x00\x03\x14", 0x1f61 # 734| "\x00\x1f\x60\x00\x03\x00", 0x1f62 # 735| "\x00\x1f\x61\x00\x03\x00", 0x1f63 Error: COMPILER_WARNING: [#def927] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:734:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 734 | "\x00\x1f\x60\x00\x03\x00", 0x1f62 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 732| "\x00\x03\xc9\x00\x03\x13", 0x1f60 # 733| "\x00\x03\xc9\x00\x03\x14", 0x1f61 # 734|-> "\x00\x1f\x60\x00\x03\x00", 0x1f62 # 735| "\x00\x1f\x61\x00\x03\x00", 0x1f63 # 736| "\x00\x1f\x60\x00\x03\x01", 0x1f64 Error: COMPILER_WARNING: [#def928] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:735:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 735 | "\x00\x1f\x61\x00\x03\x00", 0x1f63 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 733| "\x00\x03\xc9\x00\x03\x14", 0x1f61 # 734| "\x00\x1f\x60\x00\x03\x00", 0x1f62 # 735|-> "\x00\x1f\x61\x00\x03\x00", 0x1f63 # 736| "\x00\x1f\x60\x00\x03\x01", 0x1f64 # 737| "\x00\x1f\x61\x00\x03\x01", 0x1f65 Error: COMPILER_WARNING: [#def929] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:736:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 736 | "\x00\x1f\x60\x00\x03\x01", 0x1f64 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 734| "\x00\x1f\x60\x00\x03\x00", 0x1f62 # 735| "\x00\x1f\x61\x00\x03\x00", 0x1f63 # 736|-> "\x00\x1f\x60\x00\x03\x01", 0x1f64 # 737| "\x00\x1f\x61\x00\x03\x01", 0x1f65 # 738| "\x00\x1f\x60\x00\x03\x42", 0x1f66 Error: COMPILER_WARNING: [#def930] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:737:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 737 | "\x00\x1f\x61\x00\x03\x01", 0x1f65 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 735| "\x00\x1f\x61\x00\x03\x00", 0x1f63 # 736| "\x00\x1f\x60\x00\x03\x01", 0x1f64 # 737|-> "\x00\x1f\x61\x00\x03\x01", 0x1f65 # 738| "\x00\x1f\x60\x00\x03\x42", 0x1f66 # 739| "\x00\x1f\x61\x00\x03\x42", 0x1f67 Error: COMPILER_WARNING: [#def931] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:738:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 738 | "\x00\x1f\x60\x00\x03\x42", 0x1f66 # | ^~~~~~~~~~~~~~~~~~~~ # 736| "\x00\x1f\x60\x00\x03\x01", 0x1f64 # 737| "\x00\x1f\x61\x00\x03\x01", 0x1f65 # 738|-> "\x00\x1f\x60\x00\x03\x42", 0x1f66 # 739| "\x00\x1f\x61\x00\x03\x42", 0x1f67 # 740| "\x00\x03\xa9\x00\x03\x13", 0x1f68 Error: COMPILER_WARNING: [#def932] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:739:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 739 | "\x00\x1f\x61\x00\x03\x42", 0x1f67 # | ^~~~~~~~~~~~~~~~~~~~ # 737| "\x00\x1f\x61\x00\x03\x01", 0x1f65 # 738| "\x00\x1f\x60\x00\x03\x42", 0x1f66 # 739|-> "\x00\x1f\x61\x00\x03\x42", 0x1f67 # 740| "\x00\x03\xa9\x00\x03\x13", 0x1f68 # 741| "\x00\x03\xa9\x00\x03\x14", 0x1f69 Error: COMPILER_WARNING: [#def933] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:740:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 740 | "\x00\x03\xa9\x00\x03\x13", 0x1f68 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 738| "\x00\x1f\x60\x00\x03\x42", 0x1f66 # 739| "\x00\x1f\x61\x00\x03\x42", 0x1f67 # 740|-> "\x00\x03\xa9\x00\x03\x13", 0x1f68 # 741| "\x00\x03\xa9\x00\x03\x14", 0x1f69 # 742| "\x00\x1f\x68\x00\x03\x00", 0x1f6a Error: COMPILER_WARNING (CWE-909): [#def934] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:742:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 742 | "\x00\x1f\x68\x00\x03\x00", 0x1f6a # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 740| "\x00\x03\xa9\x00\x03\x13", 0x1f68 # 741| "\x00\x03\xa9\x00\x03\x14", 0x1f69 # 742|-> "\x00\x1f\x68\x00\x03\x00", 0x1f6a # 743| "\x00\x1f\x69\x00\x03\x00", 0x1f6b # 744| "\x00\x1f\x68\x00\x03\x01", 0x1f6c Error: COMPILER_WARNING: [#def935] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:742:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 742 | "\x00\x1f\x68\x00\x03\x00", 0x1f6a # | ^~~~~~~~~~~~~~~~~~~~~~~ # 740| "\x00\x03\xa9\x00\x03\x13", 0x1f68 # 741| "\x00\x03\xa9\x00\x03\x14", 0x1f69 # 742|-> "\x00\x1f\x68\x00\x03\x00", 0x1f6a # 743| "\x00\x1f\x69\x00\x03\x00", 0x1f6b # 744| "\x00\x1f\x68\x00\x03\x01", 0x1f6c Error: COMPILER_WARNING (CWE-909): [#def936] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:743:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 743 | "\x00\x1f\x69\x00\x03\x00", 0x1f6b # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 741| "\x00\x03\xa9\x00\x03\x14", 0x1f69 # 742| "\x00\x1f\x68\x00\x03\x00", 0x1f6a # 743|-> "\x00\x1f\x69\x00\x03\x00", 0x1f6b # 744| "\x00\x1f\x68\x00\x03\x01", 0x1f6c # 745| "\x00\x1f\x69\x00\x03\x01", 0x1f6d Error: COMPILER_WARNING: [#def937] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:743:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 743 | "\x00\x1f\x69\x00\x03\x00", 0x1f6b # | ^~~~~~~~~~~~~~~~~~~~~~~ # 741| "\x00\x03\xa9\x00\x03\x14", 0x1f69 # 742| "\x00\x1f\x68\x00\x03\x00", 0x1f6a # 743|-> "\x00\x1f\x69\x00\x03\x00", 0x1f6b # 744| "\x00\x1f\x68\x00\x03\x01", 0x1f6c # 745| "\x00\x1f\x69\x00\x03\x01", 0x1f6d Error: COMPILER_WARNING (CWE-909): [#def938] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:744:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 744 | "\x00\x1f\x68\x00\x03\x01", 0x1f6c # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 742| "\x00\x1f\x68\x00\x03\x00", 0x1f6a # 743| "\x00\x1f\x69\x00\x03\x00", 0x1f6b # 744|-> "\x00\x1f\x68\x00\x03\x01", 0x1f6c # 745| "\x00\x1f\x69\x00\x03\x01", 0x1f6d # 746| "\x00\x1f\x68\x00\x03\x42", 0x1f6e Error: COMPILER_WARNING: [#def939] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:744:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 744 | "\x00\x1f\x68\x00\x03\x01", 0x1f6c # | ^~~~~~~~~~~~~~~~~~~~~~~ # 742| "\x00\x1f\x68\x00\x03\x00", 0x1f6a # 743| "\x00\x1f\x69\x00\x03\x00", 0x1f6b # 744|-> "\x00\x1f\x68\x00\x03\x01", 0x1f6c # 745| "\x00\x1f\x69\x00\x03\x01", 0x1f6d # 746| "\x00\x1f\x68\x00\x03\x42", 0x1f6e Error: COMPILER_WARNING: [#def940] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:745:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 745 | "\x00\x1f\x69\x00\x03\x01", 0x1f6d # | ^~~~~~~~~~~~~~~~~~~~~~~ # 743| "\x00\x1f\x69\x00\x03\x00", 0x1f6b # 744| "\x00\x1f\x68\x00\x03\x01", 0x1f6c # 745|-> "\x00\x1f\x69\x00\x03\x01", 0x1f6d # 746| "\x00\x1f\x68\x00\x03\x42", 0x1f6e # 747| "\x00\x1f\x69\x00\x03\x42", 0x1f6f Error: COMPILER_WARNING: [#def941] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:746:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 746 | "\x00\x1f\x68\x00\x03\x42", 0x1f6e # | ^~~~~~~~~~~~~~~~~~~~ # 744| "\x00\x1f\x68\x00\x03\x01", 0x1f6c # 745| "\x00\x1f\x69\x00\x03\x01", 0x1f6d # 746|-> "\x00\x1f\x68\x00\x03\x42", 0x1f6e # 747| "\x00\x1f\x69\x00\x03\x42", 0x1f6f # 748| "\x00\x03\xb1\x00\x03\x00", 0x1f70 Error: COMPILER_WARNING: [#def942] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:747:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 747 | "\x00\x1f\x69\x00\x03\x42", 0x1f6f # | ^~~~~~~~~~~~~~~~~~~~ # 745| "\x00\x1f\x69\x00\x03\x01", 0x1f6d # 746| "\x00\x1f\x68\x00\x03\x42", 0x1f6e # 747|-> "\x00\x1f\x69\x00\x03\x42", 0x1f6f # 748| "\x00\x03\xb1\x00\x03\x00", 0x1f70 # 749| "\x00\x03\xb5\x00\x03\x00", 0x1f72 Error: COMPILER_WARNING: [#def943] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:748:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 748 | "\x00\x03\xb1\x00\x03\x00", 0x1f70 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 746| "\x00\x1f\x68\x00\x03\x42", 0x1f6e # 747| "\x00\x1f\x69\x00\x03\x42", 0x1f6f # 748|-> "\x00\x03\xb1\x00\x03\x00", 0x1f70 # 749| "\x00\x03\xb5\x00\x03\x00", 0x1f72 # 750| "\x00\x03\xb7\x00\x03\x00", 0x1f74 Error: COMPILER_WARNING: [#def944] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:749:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 749 | "\x00\x03\xb5\x00\x03\x00", 0x1f72 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 747| "\x00\x1f\x69\x00\x03\x42", 0x1f6f # 748| "\x00\x03\xb1\x00\x03\x00", 0x1f70 # 749|-> "\x00\x03\xb5\x00\x03\x00", 0x1f72 # 750| "\x00\x03\xb7\x00\x03\x00", 0x1f74 # 751| "\x00\x03\xb9\x00\x03\x00", 0x1f76 Error: COMPILER_WARNING: [#def945] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:750:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 750 | "\x00\x03\xb7\x00\x03\x00", 0x1f74 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 748| "\x00\x03\xb1\x00\x03\x00", 0x1f70 # 749| "\x00\x03\xb5\x00\x03\x00", 0x1f72 # 750|-> "\x00\x03\xb7\x00\x03\x00", 0x1f74 # 751| "\x00\x03\xb9\x00\x03\x00", 0x1f76 # 752| "\x00\x03\xbf\x00\x03\x00", 0x1f78 Error: COMPILER_WARNING: [#def946] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:751:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 751 | "\x00\x03\xb9\x00\x03\x00", 0x1f76 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 749| "\x00\x03\xb5\x00\x03\x00", 0x1f72 # 750| "\x00\x03\xb7\x00\x03\x00", 0x1f74 # 751|-> "\x00\x03\xb9\x00\x03\x00", 0x1f76 # 752| "\x00\x03\xbf\x00\x03\x00", 0x1f78 # 753| "\x00\x03\xc5\x00\x03\x00", 0x1f7a Error: COMPILER_WARNING: [#def947] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:752:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 752 | "\x00\x03\xbf\x00\x03\x00", 0x1f78 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 750| "\x00\x03\xb7\x00\x03\x00", 0x1f74 # 751| "\x00\x03\xb9\x00\x03\x00", 0x1f76 # 752|-> "\x00\x03\xbf\x00\x03\x00", 0x1f78 # 753| "\x00\x03\xc5\x00\x03\x00", 0x1f7a # 754| "\x00\x03\xc9\x00\x03\x00", 0x1f7c Error: COMPILER_WARNING: [#def948] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:753:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 753 | "\x00\x03\xc5\x00\x03\x00", 0x1f7a # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 751| "\x00\x03\xb9\x00\x03\x00", 0x1f76 # 752| "\x00\x03\xbf\x00\x03\x00", 0x1f78 # 753|-> "\x00\x03\xc5\x00\x03\x00", 0x1f7a # 754| "\x00\x03\xc9\x00\x03\x00", 0x1f7c # 755| "\x00\x1f\x00\x00\x03\x45", 0x1f80 Error: COMPILER_WARNING: [#def949] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:754:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 754 | "\x00\x03\xc9\x00\x03\x00", 0x1f7c # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 752| "\x00\x03\xbf\x00\x03\x00", 0x1f78 # 753| "\x00\x03\xc5\x00\x03\x00", 0x1f7a # 754|-> "\x00\x03\xc9\x00\x03\x00", 0x1f7c # 755| "\x00\x1f\x00\x00\x03\x45", 0x1f80 # 756| "\x00\x1f\x01\x00\x03\x45", 0x1f81 Error: COMPILER_WARNING: [#def950] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:755:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 755 | "\x00\x1f\x00\x00\x03\x45", 0x1f80 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 753| "\x00\x03\xc5\x00\x03\x00", 0x1f7a # 754| "\x00\x03\xc9\x00\x03\x00", 0x1f7c # 755|-> "\x00\x1f\x00\x00\x03\x45", 0x1f80 # 756| "\x00\x1f\x01\x00\x03\x45", 0x1f81 # 757| "\x00\x1f\x02\x00\x03\x45", 0x1f82 Error: COMPILER_WARNING: [#def951] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:756:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 756 | "\x00\x1f\x01\x00\x03\x45", 0x1f81 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 754| "\x00\x03\xc9\x00\x03\x00", 0x1f7c # 755| "\x00\x1f\x00\x00\x03\x45", 0x1f80 # 756|-> "\x00\x1f\x01\x00\x03\x45", 0x1f81 # 757| "\x00\x1f\x02\x00\x03\x45", 0x1f82 # 758| "\x00\x1f\x03\x00\x03\x45", 0x1f83 Error: COMPILER_WARNING: [#def952] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:757:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 757 | "\x00\x1f\x02\x00\x03\x45", 0x1f82 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 755| "\x00\x1f\x00\x00\x03\x45", 0x1f80 # 756| "\x00\x1f\x01\x00\x03\x45", 0x1f81 # 757|-> "\x00\x1f\x02\x00\x03\x45", 0x1f82 # 758| "\x00\x1f\x03\x00\x03\x45", 0x1f83 # 759| "\x00\x1f\x04\x00\x03\x45", 0x1f84 Error: COMPILER_WARNING: [#def953] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:758:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 758 | "\x00\x1f\x03\x00\x03\x45", 0x1f83 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 756| "\x00\x1f\x01\x00\x03\x45", 0x1f81 # 757| "\x00\x1f\x02\x00\x03\x45", 0x1f82 # 758|-> "\x00\x1f\x03\x00\x03\x45", 0x1f83 # 759| "\x00\x1f\x04\x00\x03\x45", 0x1f84 # 760| "\x00\x1f\x05\x00\x03\x45", 0x1f85 Error: COMPILER_WARNING: [#def954] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:759:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 759 | "\x00\x1f\x04\x00\x03\x45", 0x1f84 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 757| "\x00\x1f\x02\x00\x03\x45", 0x1f82 # 758| "\x00\x1f\x03\x00\x03\x45", 0x1f83 # 759|-> "\x00\x1f\x04\x00\x03\x45", 0x1f84 # 760| "\x00\x1f\x05\x00\x03\x45", 0x1f85 # 761| "\x00\x1f\x06\x00\x03\x45", 0x1f86 Error: COMPILER_WARNING: [#def955] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:760:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 760 | "\x00\x1f\x05\x00\x03\x45", 0x1f85 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 758| "\x00\x1f\x03\x00\x03\x45", 0x1f83 # 759| "\x00\x1f\x04\x00\x03\x45", 0x1f84 # 760|-> "\x00\x1f\x05\x00\x03\x45", 0x1f85 # 761| "\x00\x1f\x06\x00\x03\x45", 0x1f86 # 762| "\x00\x1f\x07\x00\x03\x45", 0x1f87 Error: COMPILER_WARNING: [#def956] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:761:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 761 | "\x00\x1f\x06\x00\x03\x45", 0x1f86 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 759| "\x00\x1f\x04\x00\x03\x45", 0x1f84 # 760| "\x00\x1f\x05\x00\x03\x45", 0x1f85 # 761|-> "\x00\x1f\x06\x00\x03\x45", 0x1f86 # 762| "\x00\x1f\x07\x00\x03\x45", 0x1f87 # 763| "\x00\x1f\x08\x00\x03\x45", 0x1f88 Error: COMPILER_WARNING: [#def957] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:762:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 762 | "\x00\x1f\x07\x00\x03\x45", 0x1f87 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 760| "\x00\x1f\x05\x00\x03\x45", 0x1f85 # 761| "\x00\x1f\x06\x00\x03\x45", 0x1f86 # 762|-> "\x00\x1f\x07\x00\x03\x45", 0x1f87 # 763| "\x00\x1f\x08\x00\x03\x45", 0x1f88 # 764| "\x00\x1f\x09\x00\x03\x45", 0x1f89 Error: COMPILER_WARNING: [#def958] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:763:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 763 | "\x00\x1f\x08\x00\x03\x45", 0x1f88 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 761| "\x00\x1f\x06\x00\x03\x45", 0x1f86 # 762| "\x00\x1f\x07\x00\x03\x45", 0x1f87 # 763|-> "\x00\x1f\x08\x00\x03\x45", 0x1f88 # 764| "\x00\x1f\x09\x00\x03\x45", 0x1f89 # 765| "\x00\x1f\x0a\x00\x03\x45", 0x1f8a Error: COMPILER_WARNING: [#def959] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:764:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 764 | "\x00\x1f\x09\x00\x03\x45", 0x1f89 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 762| "\x00\x1f\x07\x00\x03\x45", 0x1f87 # 763| "\x00\x1f\x08\x00\x03\x45", 0x1f88 # 764|-> "\x00\x1f\x09\x00\x03\x45", 0x1f89 # 765| "\x00\x1f\x0a\x00\x03\x45", 0x1f8a # 766| "\x00\x1f\x0b\x00\x03\x45", 0x1f8b Error: COMPILER_WARNING: [#def960] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:765:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 765 | "\x00\x1f\x0a\x00\x03\x45", 0x1f8a # | ^~~~~~~~~~~~~~~~~~~~~~~ # 763| "\x00\x1f\x08\x00\x03\x45", 0x1f88 # 764| "\x00\x1f\x09\x00\x03\x45", 0x1f89 # 765|-> "\x00\x1f\x0a\x00\x03\x45", 0x1f8a # 766| "\x00\x1f\x0b\x00\x03\x45", 0x1f8b # 767| "\x00\x1f\x0c\x00\x03\x45", 0x1f8c Error: COMPILER_WARNING: [#def961] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:766:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 766 | "\x00\x1f\x0b\x00\x03\x45", 0x1f8b # | ^~~~~~~~~~~~~~~~~~~~~~~ # 764| "\x00\x1f\x09\x00\x03\x45", 0x1f89 # 765| "\x00\x1f\x0a\x00\x03\x45", 0x1f8a # 766|-> "\x00\x1f\x0b\x00\x03\x45", 0x1f8b # 767| "\x00\x1f\x0c\x00\x03\x45", 0x1f8c # 768| "\x00\x1f\x0d\x00\x03\x45", 0x1f8d Error: COMPILER_WARNING: [#def962] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:767:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 767 | "\x00\x1f\x0c\x00\x03\x45", 0x1f8c # | ^~~~~~~~~~~~~~~~~~~~~~~ # 765| "\x00\x1f\x0a\x00\x03\x45", 0x1f8a # 766| "\x00\x1f\x0b\x00\x03\x45", 0x1f8b # 767|-> "\x00\x1f\x0c\x00\x03\x45", 0x1f8c # 768| "\x00\x1f\x0d\x00\x03\x45", 0x1f8d # 769| "\x00\x1f\x0e\x00\x03\x45", 0x1f8e Error: COMPILER_WARNING: [#def963] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:768:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 768 | "\x00\x1f\x0d\x00\x03\x45", 0x1f8d # | ^~~~~~~~~~~~~~~~~~~~~~~ # 766| "\x00\x1f\x0b\x00\x03\x45", 0x1f8b # 767| "\x00\x1f\x0c\x00\x03\x45", 0x1f8c # 768|-> "\x00\x1f\x0d\x00\x03\x45", 0x1f8d # 769| "\x00\x1f\x0e\x00\x03\x45", 0x1f8e # 770| "\x00\x1f\x0f\x00\x03\x45", 0x1f8f Error: COMPILER_WARNING: [#def964] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:769:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 769 | "\x00\x1f\x0e\x00\x03\x45", 0x1f8e # | ^~~~~~~~~~~~~~~~~~~~~~~ # 767| "\x00\x1f\x0c\x00\x03\x45", 0x1f8c # 768| "\x00\x1f\x0d\x00\x03\x45", 0x1f8d # 769|-> "\x00\x1f\x0e\x00\x03\x45", 0x1f8e # 770| "\x00\x1f\x0f\x00\x03\x45", 0x1f8f # 771| "\x00\x1f\x20\x00\x03\x45", 0x1f90 Error: COMPILER_WARNING (CWE-909): [#def965] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:770:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 770 | "\x00\x1f\x0f\x00\x03\x45", 0x1f8f # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 768| "\x00\x1f\x0d\x00\x03\x45", 0x1f8d # 769| "\x00\x1f\x0e\x00\x03\x45", 0x1f8e # 770|-> "\x00\x1f\x0f\x00\x03\x45", 0x1f8f # 771| "\x00\x1f\x20\x00\x03\x45", 0x1f90 # 772| "\x00\x1f\x21\x00\x03\x45", 0x1f91 Error: COMPILER_WARNING: [#def966] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:770:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 770 | "\x00\x1f\x0f\x00\x03\x45", 0x1f8f # | ^~~~~~~~~~~~~~~~~~~~~~~ # 768| "\x00\x1f\x0d\x00\x03\x45", 0x1f8d # 769| "\x00\x1f\x0e\x00\x03\x45", 0x1f8e # 770|-> "\x00\x1f\x0f\x00\x03\x45", 0x1f8f # 771| "\x00\x1f\x20\x00\x03\x45", 0x1f90 # 772| "\x00\x1f\x21\x00\x03\x45", 0x1f91 Error: COMPILER_WARNING: [#def967] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:771:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 771 | "\x00\x1f\x20\x00\x03\x45", 0x1f90 # | ^~~~~~~~~~~~~~~~~~~~ # 769| "\x00\x1f\x0e\x00\x03\x45", 0x1f8e # 770| "\x00\x1f\x0f\x00\x03\x45", 0x1f8f # 771|-> "\x00\x1f\x20\x00\x03\x45", 0x1f90 # 772| "\x00\x1f\x21\x00\x03\x45", 0x1f91 # 773| "\x00\x1f\x22\x00\x03\x45", 0x1f92 Error: COMPILER_WARNING: [#def968] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:772:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 772 | "\x00\x1f\x21\x00\x03\x45", 0x1f91 # | ^~~~~~~~~~~~~~~~~~~~ # 770| "\x00\x1f\x0f\x00\x03\x45", 0x1f8f # 771| "\x00\x1f\x20\x00\x03\x45", 0x1f90 # 772|-> "\x00\x1f\x21\x00\x03\x45", 0x1f91 # 773| "\x00\x1f\x22\x00\x03\x45", 0x1f92 # 774| "\x00\x1f\x23\x00\x03\x45", 0x1f93 Error: COMPILER_WARNING: [#def969] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:773:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 773 | "\x00\x1f\x22\x00\x03\x45", 0x1f92 # | ^~~~~~~~~~~~~~~~~~~~~ # 771| "\x00\x1f\x20\x00\x03\x45", 0x1f90 # 772| "\x00\x1f\x21\x00\x03\x45", 0x1f91 # 773|-> "\x00\x1f\x22\x00\x03\x45", 0x1f92 # 774| "\x00\x1f\x23\x00\x03\x45", 0x1f93 # 775| "\x00\x1f\x24\x00\x03\x45", 0x1f94 Error: COMPILER_WARNING: [#def970] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:774:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 774 | "\x00\x1f\x23\x00\x03\x45", 0x1f93 # | ^~~~~~~~~~~~~~~~~~~~ # 772| "\x00\x1f\x21\x00\x03\x45", 0x1f91 # 773| "\x00\x1f\x22\x00\x03\x45", 0x1f92 # 774|-> "\x00\x1f\x23\x00\x03\x45", 0x1f93 # 775| "\x00\x1f\x24\x00\x03\x45", 0x1f94 # 776| "\x00\x1f\x25\x00\x03\x45", 0x1f95 Error: COMPILER_WARNING: [#def971] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:775:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 775 | "\x00\x1f\x24\x00\x03\x45", 0x1f94 # | ^~~~~~~~~~~~~~~~~~~~ # 773| "\x00\x1f\x22\x00\x03\x45", 0x1f92 # 774| "\x00\x1f\x23\x00\x03\x45", 0x1f93 # 775|-> "\x00\x1f\x24\x00\x03\x45", 0x1f94 # 776| "\x00\x1f\x25\x00\x03\x45", 0x1f95 # 777| "\x00\x1f\x26\x00\x03\x45", 0x1f96 Error: COMPILER_WARNING: [#def972] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:776:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 776 | "\x00\x1f\x25\x00\x03\x45", 0x1f95 # | ^~~~~~~~~~~~~~~~~~~~ # 774| "\x00\x1f\x23\x00\x03\x45", 0x1f93 # 775| "\x00\x1f\x24\x00\x03\x45", 0x1f94 # 776|-> "\x00\x1f\x25\x00\x03\x45", 0x1f95 # 777| "\x00\x1f\x26\x00\x03\x45", 0x1f96 # 778| "\x00\x1f\x27\x00\x03\x45", 0x1f97 Error: COMPILER_WARNING: [#def973] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:777:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 777 | "\x00\x1f\x26\x00\x03\x45", 0x1f96 # | ^~~~~~~~~~~~~~~~~~~~ # 775| "\x00\x1f\x24\x00\x03\x45", 0x1f94 # 776| "\x00\x1f\x25\x00\x03\x45", 0x1f95 # 777|-> "\x00\x1f\x26\x00\x03\x45", 0x1f96 # 778| "\x00\x1f\x27\x00\x03\x45", 0x1f97 # 779| "\x00\x1f\x28\x00\x03\x45", 0x1f98 Error: COMPILER_WARNING: [#def974] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:778:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 778 | "\x00\x1f\x27\x00\x03\x45", 0x1f97 # | ^~~~~~~~~~~~~~~~~~~~ # 776| "\x00\x1f\x25\x00\x03\x45", 0x1f95 # 777| "\x00\x1f\x26\x00\x03\x45", 0x1f96 # 778|-> "\x00\x1f\x27\x00\x03\x45", 0x1f97 # 779| "\x00\x1f\x28\x00\x03\x45", 0x1f98 # 780| "\x00\x1f\x29\x00\x03\x45", 0x1f99 Error: COMPILER_WARNING: [#def975] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:779:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 779 | "\x00\x1f\x28\x00\x03\x45", 0x1f98 # | ^~~~~~~~~~~~~~~~~~~~ # 777| "\x00\x1f\x26\x00\x03\x45", 0x1f96 # 778| "\x00\x1f\x27\x00\x03\x45", 0x1f97 # 779|-> "\x00\x1f\x28\x00\x03\x45", 0x1f98 # 780| "\x00\x1f\x29\x00\x03\x45", 0x1f99 # 781| "\x00\x1f\x2a\x00\x03\x45", 0x1f9a Error: COMPILER_WARNING: [#def976] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:780:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 780 | "\x00\x1f\x29\x00\x03\x45", 0x1f99 # | ^~~~~~~~~~~~~~~~~~~~ # 778| "\x00\x1f\x27\x00\x03\x45", 0x1f97 # 779| "\x00\x1f\x28\x00\x03\x45", 0x1f98 # 780|-> "\x00\x1f\x29\x00\x03\x45", 0x1f99 # 781| "\x00\x1f\x2a\x00\x03\x45", 0x1f9a # 782| "\x00\x1f\x2b\x00\x03\x45", 0x1f9b Error: COMPILER_WARNING: [#def977] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:781:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 781 | "\x00\x1f\x2a\x00\x03\x45", 0x1f9a # | ^~~~~~~~~~~~~~~~~~~~ # 779| "\x00\x1f\x28\x00\x03\x45", 0x1f98 # 780| "\x00\x1f\x29\x00\x03\x45", 0x1f99 # 781|-> "\x00\x1f\x2a\x00\x03\x45", 0x1f9a # 782| "\x00\x1f\x2b\x00\x03\x45", 0x1f9b # 783| "\x00\x1f\x2c\x00\x03\x45", 0x1f9c Error: COMPILER_WARNING: [#def978] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:782:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 782 | "\x00\x1f\x2b\x00\x03\x45", 0x1f9b # | ^~~~~~~~~~~~~~~~~~~~ # 780| "\x00\x1f\x29\x00\x03\x45", 0x1f99 # 781| "\x00\x1f\x2a\x00\x03\x45", 0x1f9a # 782|-> "\x00\x1f\x2b\x00\x03\x45", 0x1f9b # 783| "\x00\x1f\x2c\x00\x03\x45", 0x1f9c # 784| "\x00\x1f\x2d\x00\x03\x45", 0x1f9d Error: COMPILER_WARNING: [#def979] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:783:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 783 | "\x00\x1f\x2c\x00\x03\x45", 0x1f9c # | ^~~~~~~~~~~~~~~~~~~~ # 781| "\x00\x1f\x2a\x00\x03\x45", 0x1f9a # 782| "\x00\x1f\x2b\x00\x03\x45", 0x1f9b # 783|-> "\x00\x1f\x2c\x00\x03\x45", 0x1f9c # 784| "\x00\x1f\x2d\x00\x03\x45", 0x1f9d # 785| "\x00\x1f\x2e\x00\x03\x45", 0x1f9e Error: COMPILER_WARNING: [#def980] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:784:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 784 | "\x00\x1f\x2d\x00\x03\x45", 0x1f9d # | ^~~~~~~~~~~~~~~~~~~~ # 782| "\x00\x1f\x2b\x00\x03\x45", 0x1f9b # 783| "\x00\x1f\x2c\x00\x03\x45", 0x1f9c # 784|-> "\x00\x1f\x2d\x00\x03\x45", 0x1f9d # 785| "\x00\x1f\x2e\x00\x03\x45", 0x1f9e # 786| "\x00\x1f\x2f\x00\x03\x45", 0x1f9f Error: COMPILER_WARNING: [#def981] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:785:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 785 | "\x00\x1f\x2e\x00\x03\x45", 0x1f9e # | ^~~~~~~~~~~~~~~~~~~~ # 783| "\x00\x1f\x2c\x00\x03\x45", 0x1f9c # 784| "\x00\x1f\x2d\x00\x03\x45", 0x1f9d # 785|-> "\x00\x1f\x2e\x00\x03\x45", 0x1f9e # 786| "\x00\x1f\x2f\x00\x03\x45", 0x1f9f # 787| "\x00\x1f\x60\x00\x03\x45", 0x1fa0 Error: COMPILER_WARNING: [#def982] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:786:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 786 | "\x00\x1f\x2f\x00\x03\x45", 0x1f9f # | ^~~~~~~~~~~~~~~~~~~~ # 784| "\x00\x1f\x2d\x00\x03\x45", 0x1f9d # 785| "\x00\x1f\x2e\x00\x03\x45", 0x1f9e # 786|-> "\x00\x1f\x2f\x00\x03\x45", 0x1f9f # 787| "\x00\x1f\x60\x00\x03\x45", 0x1fa0 # 788| "\x00\x1f\x61\x00\x03\x45", 0x1fa1 Error: COMPILER_WARNING: [#def983] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:787:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 787 | "\x00\x1f\x60\x00\x03\x45", 0x1fa0 # | ^~~~~~~~~~~~~~~~~~~~ # 785| "\x00\x1f\x2e\x00\x03\x45", 0x1f9e # 786| "\x00\x1f\x2f\x00\x03\x45", 0x1f9f # 787|-> "\x00\x1f\x60\x00\x03\x45", 0x1fa0 # 788| "\x00\x1f\x61\x00\x03\x45", 0x1fa1 # 789| "\x00\x1f\x62\x00\x03\x45", 0x1fa2 Error: COMPILER_WARNING: [#def984] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:788:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 788 | "\x00\x1f\x61\x00\x03\x45", 0x1fa1 # | ^~~~~~~~~~~~~~~~~~~~ # 786| "\x00\x1f\x2f\x00\x03\x45", 0x1f9f # 787| "\x00\x1f\x60\x00\x03\x45", 0x1fa0 # 788|-> "\x00\x1f\x61\x00\x03\x45", 0x1fa1 # 789| "\x00\x1f\x62\x00\x03\x45", 0x1fa2 # 790| "\x00\x1f\x63\x00\x03\x45", 0x1fa3 Error: COMPILER_WARNING: [#def985] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:789:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 789 | "\x00\x1f\x62\x00\x03\x45", 0x1fa2 # | ^~~~~~~~~~~~~~~~~~~~ # 787| "\x00\x1f\x60\x00\x03\x45", 0x1fa0 # 788| "\x00\x1f\x61\x00\x03\x45", 0x1fa1 # 789|-> "\x00\x1f\x62\x00\x03\x45", 0x1fa2 # 790| "\x00\x1f\x63\x00\x03\x45", 0x1fa3 # 791| "\x00\x1f\x64\x00\x03\x45", 0x1fa4 Error: COMPILER_WARNING: [#def986] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:790:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 790 | "\x00\x1f\x63\x00\x03\x45", 0x1fa3 # | ^~~~~~~~~~~~~~~~~~~~ # 788| "\x00\x1f\x61\x00\x03\x45", 0x1fa1 # 789| "\x00\x1f\x62\x00\x03\x45", 0x1fa2 # 790|-> "\x00\x1f\x63\x00\x03\x45", 0x1fa3 # 791| "\x00\x1f\x64\x00\x03\x45", 0x1fa4 # 792| "\x00\x1f\x65\x00\x03\x45", 0x1fa5 Error: COMPILER_WARNING: [#def987] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:791:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 791 | "\x00\x1f\x64\x00\x03\x45", 0x1fa4 # | ^~~~~~~~~~~~~~~~~~~~ # 789| "\x00\x1f\x62\x00\x03\x45", 0x1fa2 # 790| "\x00\x1f\x63\x00\x03\x45", 0x1fa3 # 791|-> "\x00\x1f\x64\x00\x03\x45", 0x1fa4 # 792| "\x00\x1f\x65\x00\x03\x45", 0x1fa5 # 793| "\x00\x1f\x66\x00\x03\x45", 0x1fa6 Error: COMPILER_WARNING: [#def988] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:792:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 792 | "\x00\x1f\x65\x00\x03\x45", 0x1fa5 # | ^~~~~~~~~~~~~~~~~~~~ # 790| "\x00\x1f\x63\x00\x03\x45", 0x1fa3 # 791| "\x00\x1f\x64\x00\x03\x45", 0x1fa4 # 792|-> "\x00\x1f\x65\x00\x03\x45", 0x1fa5 # 793| "\x00\x1f\x66\x00\x03\x45", 0x1fa6 # 794| "\x00\x1f\x67\x00\x03\x45", 0x1fa7 Error: COMPILER_WARNING: [#def989] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:793:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 793 | "\x00\x1f\x66\x00\x03\x45", 0x1fa6 # | ^~~~~~~~~~~~~~~~~~~~ # 791| "\x00\x1f\x64\x00\x03\x45", 0x1fa4 # 792| "\x00\x1f\x65\x00\x03\x45", 0x1fa5 # 793|-> "\x00\x1f\x66\x00\x03\x45", 0x1fa6 # 794| "\x00\x1f\x67\x00\x03\x45", 0x1fa7 # 795| "\x00\x1f\x68\x00\x03\x45", 0x1fa8 Error: COMPILER_WARNING: [#def990] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:794:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 794 | "\x00\x1f\x67\x00\x03\x45", 0x1fa7 # | ^~~~~~~~~~~~~~~~~~~~ # 792| "\x00\x1f\x65\x00\x03\x45", 0x1fa5 # 793| "\x00\x1f\x66\x00\x03\x45", 0x1fa6 # 794|-> "\x00\x1f\x67\x00\x03\x45", 0x1fa7 # 795| "\x00\x1f\x68\x00\x03\x45", 0x1fa8 # 796| "\x00\x1f\x69\x00\x03\x45", 0x1fa9 Error: COMPILER_WARNING: [#def991] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:795:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 795 | "\x00\x1f\x68\x00\x03\x45", 0x1fa8 # | ^~~~~~~~~~~~~~~~~~~~ # 793| "\x00\x1f\x66\x00\x03\x45", 0x1fa6 # 794| "\x00\x1f\x67\x00\x03\x45", 0x1fa7 # 795|-> "\x00\x1f\x68\x00\x03\x45", 0x1fa8 # 796| "\x00\x1f\x69\x00\x03\x45", 0x1fa9 # 797| "\x00\x1f\x6a\x00\x03\x45", 0x1faa Error: COMPILER_WARNING: [#def992] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:796:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 796 | "\x00\x1f\x69\x00\x03\x45", 0x1fa9 # | ^~~~~~~~~~~~~~~~~~~~ # 794| "\x00\x1f\x67\x00\x03\x45", 0x1fa7 # 795| "\x00\x1f\x68\x00\x03\x45", 0x1fa8 # 796|-> "\x00\x1f\x69\x00\x03\x45", 0x1fa9 # 797| "\x00\x1f\x6a\x00\x03\x45", 0x1faa # 798| "\x00\x1f\x6b\x00\x03\x45", 0x1fab Error: COMPILER_WARNING: [#def993] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:797:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 797 | "\x00\x1f\x6a\x00\x03\x45", 0x1faa # | ^~~~~~~~~~~~~~~~~~~~ # 795| "\x00\x1f\x68\x00\x03\x45", 0x1fa8 # 796| "\x00\x1f\x69\x00\x03\x45", 0x1fa9 # 797|-> "\x00\x1f\x6a\x00\x03\x45", 0x1faa # 798| "\x00\x1f\x6b\x00\x03\x45", 0x1fab # 799| "\x00\x1f\x6c\x00\x03\x45", 0x1fac Error: COMPILER_WARNING: [#def994] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:798:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 798 | "\x00\x1f\x6b\x00\x03\x45", 0x1fab # | ^~~~~~~~~~~~~~~~~~~~ # 796| "\x00\x1f\x69\x00\x03\x45", 0x1fa9 # 797| "\x00\x1f\x6a\x00\x03\x45", 0x1faa # 798|-> "\x00\x1f\x6b\x00\x03\x45", 0x1fab # 799| "\x00\x1f\x6c\x00\x03\x45", 0x1fac # 800| "\x00\x1f\x6d\x00\x03\x45", 0x1fad Error: COMPILER_WARNING: [#def995] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:799:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 799 | "\x00\x1f\x6c\x00\x03\x45", 0x1fac # | ^~~~~~~~~~~~~~~~~~~~ # 797| "\x00\x1f\x6a\x00\x03\x45", 0x1faa # 798| "\x00\x1f\x6b\x00\x03\x45", 0x1fab # 799|-> "\x00\x1f\x6c\x00\x03\x45", 0x1fac # 800| "\x00\x1f\x6d\x00\x03\x45", 0x1fad # 801| "\x00\x1f\x6e\x00\x03\x45", 0x1fae Error: COMPILER_WARNING: [#def996] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:800:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 800 | "\x00\x1f\x6d\x00\x03\x45", 0x1fad # | ^~~~~~~~~~~~~~~~~~~~ # 798| "\x00\x1f\x6b\x00\x03\x45", 0x1fab # 799| "\x00\x1f\x6c\x00\x03\x45", 0x1fac # 800|-> "\x00\x1f\x6d\x00\x03\x45", 0x1fad # 801| "\x00\x1f\x6e\x00\x03\x45", 0x1fae # 802| "\x00\x1f\x6f\x00\x03\x45", 0x1faf Error: COMPILER_WARNING: [#def997] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:801:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 801 | "\x00\x1f\x6e\x00\x03\x45", 0x1fae # | ^~~~~~~~~~~~~~~~~~~~ # 799| "\x00\x1f\x6c\x00\x03\x45", 0x1fac # 800| "\x00\x1f\x6d\x00\x03\x45", 0x1fad # 801|-> "\x00\x1f\x6e\x00\x03\x45", 0x1fae # 802| "\x00\x1f\x6f\x00\x03\x45", 0x1faf # 803| "\x00\x03\xb1\x00\x03\x06", 0x1fb0 Error: COMPILER_WARNING: [#def998] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:802:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 802 | "\x00\x1f\x6f\x00\x03\x45", 0x1faf # | ^~~~~~~~~~~~~~~~~~~~ # 800| "\x00\x1f\x6d\x00\x03\x45", 0x1fad # 801| "\x00\x1f\x6e\x00\x03\x45", 0x1fae # 802|-> "\x00\x1f\x6f\x00\x03\x45", 0x1faf # 803| "\x00\x03\xb1\x00\x03\x06", 0x1fb0 # 804| "\x00\x03\xb1\x00\x03\x04", 0x1fb1 Error: COMPILER_WARNING: [#def999] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:803:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 803 | "\x00\x03\xb1\x00\x03\x06", 0x1fb0 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 801| "\x00\x1f\x6e\x00\x03\x45", 0x1fae # 802| "\x00\x1f\x6f\x00\x03\x45", 0x1faf # 803|-> "\x00\x03\xb1\x00\x03\x06", 0x1fb0 # 804| "\x00\x03\xb1\x00\x03\x04", 0x1fb1 # 805| "\x00\x1f\x70\x00\x03\x45", 0x1fb2 Error: COMPILER_WARNING: [#def1000] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:804:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 804 | "\x00\x03\xb1\x00\x03\x04", 0x1fb1 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 802| "\x00\x1f\x6f\x00\x03\x45", 0x1faf # 803| "\x00\x03\xb1\x00\x03\x06", 0x1fb0 # 804|-> "\x00\x03\xb1\x00\x03\x04", 0x1fb1 # 805| "\x00\x1f\x70\x00\x03\x45", 0x1fb2 # 806| "\x00\x03\xb1\x00\x03\x45", 0x1fb3 Error: COMPILER_WARNING: [#def1001] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:805:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 805 | "\x00\x1f\x70\x00\x03\x45", 0x1fb2 # | ^~~~~~~~~~~~~~~~~~~~ # 803| "\x00\x03\xb1\x00\x03\x06", 0x1fb0 # 804| "\x00\x03\xb1\x00\x03\x04", 0x1fb1 # 805|-> "\x00\x1f\x70\x00\x03\x45", 0x1fb2 # 806| "\x00\x03\xb1\x00\x03\x45", 0x1fb3 # 807| "\x00\x03\xac\x00\x03\x45", 0x1fb4 Error: COMPILER_WARNING: [#def1002] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:806:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 806 | "\x00\x03\xb1\x00\x03\x45", 0x1fb3 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 804| "\x00\x03\xb1\x00\x03\x04", 0x1fb1 # 805| "\x00\x1f\x70\x00\x03\x45", 0x1fb2 # 806|-> "\x00\x03\xb1\x00\x03\x45", 0x1fb3 # 807| "\x00\x03\xac\x00\x03\x45", 0x1fb4 # 808| "\x00\x03\xb1\x00\x03\x42", 0x1fb6 Error: COMPILER_WARNING: [#def1003] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:807:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 807 | "\x00\x03\xac\x00\x03\x45", 0x1fb4 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 805| "\x00\x1f\x70\x00\x03\x45", 0x1fb2 # 806| "\x00\x03\xb1\x00\x03\x45", 0x1fb3 # 807|-> "\x00\x03\xac\x00\x03\x45", 0x1fb4 # 808| "\x00\x03\xb1\x00\x03\x42", 0x1fb6 # 809| "\x00\x1f\xb6\x00\x03\x45", 0x1fb7 Error: COMPILER_WARNING: [#def1004] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:808:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 808 | "\x00\x03\xb1\x00\x03\x42", 0x1fb6 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 806| "\x00\x03\xb1\x00\x03\x45", 0x1fb3 # 807| "\x00\x03\xac\x00\x03\x45", 0x1fb4 # 808|-> "\x00\x03\xb1\x00\x03\x42", 0x1fb6 # 809| "\x00\x1f\xb6\x00\x03\x45", 0x1fb7 # 810| "\x00\x03\x91\x00\x03\x06", 0x1fb8 Error: COMPILER_WARNING: [#def1005] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:809:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 809 | "\x00\x1f\xb6\x00\x03\x45", 0x1fb7 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 807| "\x00\x03\xac\x00\x03\x45", 0x1fb4 # 808| "\x00\x03\xb1\x00\x03\x42", 0x1fb6 # 809|-> "\x00\x1f\xb6\x00\x03\x45", 0x1fb7 # 810| "\x00\x03\x91\x00\x03\x06", 0x1fb8 # 811| "\x00\x03\x91\x00\x03\x04", 0x1fb9 Error: COMPILER_WARNING: [#def1006] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:810:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 810 | "\x00\x03\x91\x00\x03\x06", 0x1fb8 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 808| "\x00\x03\xb1\x00\x03\x42", 0x1fb6 # 809| "\x00\x1f\xb6\x00\x03\x45", 0x1fb7 # 810|-> "\x00\x03\x91\x00\x03\x06", 0x1fb8 # 811| "\x00\x03\x91\x00\x03\x04", 0x1fb9 # 812| "\x00\x03\x91\x00\x03\x00", 0x1fba Error: COMPILER_WARNING: [#def1007] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:811:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 811 | "\x00\x03\x91\x00\x03\x04", 0x1fb9 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 809| "\x00\x1f\xb6\x00\x03\x45", 0x1fb7 # 810| "\x00\x03\x91\x00\x03\x06", 0x1fb8 # 811|-> "\x00\x03\x91\x00\x03\x04", 0x1fb9 # 812| "\x00\x03\x91\x00\x03\x00", 0x1fba # 813| "\x00\x03\x91\x00\x03\x45", 0x1fbc Error: COMPILER_WARNING: [#def1008] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:812:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 812 | "\x00\x03\x91\x00\x03\x00", 0x1fba # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 810| "\x00\x03\x91\x00\x03\x06", 0x1fb8 # 811| "\x00\x03\x91\x00\x03\x04", 0x1fb9 # 812|-> "\x00\x03\x91\x00\x03\x00", 0x1fba # 813| "\x00\x03\x91\x00\x03\x45", 0x1fbc # 814| "\x00\x00\xa8\x00\x03\x42", 0x1fc1 Error: COMPILER_WARNING: [#def1009] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:813:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 813 | "\x00\x03\x91\x00\x03\x45", 0x1fbc # | ^~~~~~~~~~~~~~~~~~~~~~~ # 811| "\x00\x03\x91\x00\x03\x04", 0x1fb9 # 812| "\x00\x03\x91\x00\x03\x00", 0x1fba # 813|-> "\x00\x03\x91\x00\x03\x45", 0x1fbc # 814| "\x00\x00\xa8\x00\x03\x42", 0x1fc1 # 815| "\x00\x1f\x74\x00\x03\x45", 0x1fc2 Error: COMPILER_WARNING: [#def1010] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:814:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 814 | "\x00\x00\xa8\x00\x03\x42", 0x1fc1 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 812| "\x00\x03\x91\x00\x03\x00", 0x1fba # 813| "\x00\x03\x91\x00\x03\x45", 0x1fbc # 814|-> "\x00\x00\xa8\x00\x03\x42", 0x1fc1 # 815| "\x00\x1f\x74\x00\x03\x45", 0x1fc2 # 816| "\x00\x03\xb7\x00\x03\x45", 0x1fc3 Error: COMPILER_WARNING: [#def1011] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:815:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 815 | "\x00\x1f\x74\x00\x03\x45", 0x1fc2 # | ^~~~~~~~~~~~~~~~~~~~ # 813| "\x00\x03\x91\x00\x03\x45", 0x1fbc # 814| "\x00\x00\xa8\x00\x03\x42", 0x1fc1 # 815|-> "\x00\x1f\x74\x00\x03\x45", 0x1fc2 # 816| "\x00\x03\xb7\x00\x03\x45", 0x1fc3 # 817| "\x00\x03\xae\x00\x03\x45", 0x1fc4 Error: COMPILER_WARNING: [#def1012] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:816:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 816 | "\x00\x03\xb7\x00\x03\x45", 0x1fc3 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 814| "\x00\x00\xa8\x00\x03\x42", 0x1fc1 # 815| "\x00\x1f\x74\x00\x03\x45", 0x1fc2 # 816|-> "\x00\x03\xb7\x00\x03\x45", 0x1fc3 # 817| "\x00\x03\xae\x00\x03\x45", 0x1fc4 # 818| "\x00\x03\xb7\x00\x03\x42", 0x1fc6 Error: COMPILER_WARNING: [#def1013] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:817:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 817 | "\x00\x03\xae\x00\x03\x45", 0x1fc4 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 815| "\x00\x1f\x74\x00\x03\x45", 0x1fc2 # 816| "\x00\x03\xb7\x00\x03\x45", 0x1fc3 # 817|-> "\x00\x03\xae\x00\x03\x45", 0x1fc4 # 818| "\x00\x03\xb7\x00\x03\x42", 0x1fc6 # 819| "\x00\x1f\xc6\x00\x03\x45", 0x1fc7 Error: COMPILER_WARNING: [#def1014] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:818:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 818 | "\x00\x03\xb7\x00\x03\x42", 0x1fc6 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 816| "\x00\x03\xb7\x00\x03\x45", 0x1fc3 # 817| "\x00\x03\xae\x00\x03\x45", 0x1fc4 # 818|-> "\x00\x03\xb7\x00\x03\x42", 0x1fc6 # 819| "\x00\x1f\xc6\x00\x03\x45", 0x1fc7 # 820| "\x00\x03\x95\x00\x03\x00", 0x1fc8 Error: COMPILER_WARNING: [#def1015] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:819:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 819 | "\x00\x1f\xc6\x00\x03\x45", 0x1fc7 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 817| "\x00\x03\xae\x00\x03\x45", 0x1fc4 # 818| "\x00\x03\xb7\x00\x03\x42", 0x1fc6 # 819|-> "\x00\x1f\xc6\x00\x03\x45", 0x1fc7 # 820| "\x00\x03\x95\x00\x03\x00", 0x1fc8 # 821| "\x00\x03\x97\x00\x03\x00", 0x1fca Error: COMPILER_WARNING: [#def1016] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:820:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 820 | "\x00\x03\x95\x00\x03\x00", 0x1fc8 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 818| "\x00\x03\xb7\x00\x03\x42", 0x1fc6 # 819| "\x00\x1f\xc6\x00\x03\x45", 0x1fc7 # 820|-> "\x00\x03\x95\x00\x03\x00", 0x1fc8 # 821| "\x00\x03\x97\x00\x03\x00", 0x1fca # 822| "\x00\x03\x97\x00\x03\x45", 0x1fcc Error: COMPILER_WARNING: [#def1017] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:821:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 821 | "\x00\x03\x97\x00\x03\x00", 0x1fca # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 819| "\x00\x1f\xc6\x00\x03\x45", 0x1fc7 # 820| "\x00\x03\x95\x00\x03\x00", 0x1fc8 # 821|-> "\x00\x03\x97\x00\x03\x00", 0x1fca # 822| "\x00\x03\x97\x00\x03\x45", 0x1fcc # 823| "\x00\x1f\xbf\x00\x03\x00", 0x1fcd Error: COMPILER_WARNING (CWE-909): [#def1018] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:822:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 822 | "\x00\x03\x97\x00\x03\x45", 0x1fcc # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 820| "\x00\x03\x95\x00\x03\x00", 0x1fc8 # 821| "\x00\x03\x97\x00\x03\x00", 0x1fca # 822|-> "\x00\x03\x97\x00\x03\x45", 0x1fcc # 823| "\x00\x1f\xbf\x00\x03\x00", 0x1fcd # 824| "\x00\x1f\xbf\x00\x03\x01", 0x1fce Error: COMPILER_WARNING: [#def1019] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:822:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 822 | "\x00\x03\x97\x00\x03\x45", 0x1fcc # | ^~~~~~~~~~~~~~~~~~~~~~~ # 820| "\x00\x03\x95\x00\x03\x00", 0x1fc8 # 821| "\x00\x03\x97\x00\x03\x00", 0x1fca # 822|-> "\x00\x03\x97\x00\x03\x45", 0x1fcc # 823| "\x00\x1f\xbf\x00\x03\x00", 0x1fcd # 824| "\x00\x1f\xbf\x00\x03\x01", 0x1fce Error: COMPILER_WARNING: [#def1020] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:823:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 823 | "\x00\x1f\xbf\x00\x03\x00", 0x1fcd # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 821| "\x00\x03\x97\x00\x03\x00", 0x1fca # 822| "\x00\x03\x97\x00\x03\x45", 0x1fcc # 823|-> "\x00\x1f\xbf\x00\x03\x00", 0x1fcd # 824| "\x00\x1f\xbf\x00\x03\x01", 0x1fce # 825| "\x00\x1f\xbf\x00\x03\x42", 0x1fcf Error: COMPILER_WARNING: [#def1021] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:824:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 824 | "\x00\x1f\xbf\x00\x03\x01", 0x1fce # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 822| "\x00\x03\x97\x00\x03\x45", 0x1fcc # 823| "\x00\x1f\xbf\x00\x03\x00", 0x1fcd # 824|-> "\x00\x1f\xbf\x00\x03\x01", 0x1fce # 825| "\x00\x1f\xbf\x00\x03\x42", 0x1fcf # 826| "\x00\x03\xb9\x00\x03\x06", 0x1fd0 Error: COMPILER_WARNING: [#def1022] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:825:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 825 | "\x00\x1f\xbf\x00\x03\x42", 0x1fcf # | ^~~~~~~~~~~~~~~~~~~~~~~ # 823| "\x00\x1f\xbf\x00\x03\x00", 0x1fcd # 824| "\x00\x1f\xbf\x00\x03\x01", 0x1fce # 825|-> "\x00\x1f\xbf\x00\x03\x42", 0x1fcf # 826| "\x00\x03\xb9\x00\x03\x06", 0x1fd0 # 827| "\x00\x03\xb9\x00\x03\x04", 0x1fd1 Error: COMPILER_WARNING: [#def1023] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:826:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 826 | "\x00\x03\xb9\x00\x03\x06", 0x1fd0 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 824| "\x00\x1f\xbf\x00\x03\x01", 0x1fce # 825| "\x00\x1f\xbf\x00\x03\x42", 0x1fcf # 826|-> "\x00\x03\xb9\x00\x03\x06", 0x1fd0 # 827| "\x00\x03\xb9\x00\x03\x04", 0x1fd1 # 828| "\x00\x03\xca\x00\x03\x00", 0x1fd2 Error: COMPILER_WARNING: [#def1024] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:827:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 827 | "\x00\x03\xb9\x00\x03\x04", 0x1fd1 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 825| "\x00\x1f\xbf\x00\x03\x42", 0x1fcf # 826| "\x00\x03\xb9\x00\x03\x06", 0x1fd0 # 827|-> "\x00\x03\xb9\x00\x03\x04", 0x1fd1 # 828| "\x00\x03\xca\x00\x03\x00", 0x1fd2 # 829| "\x00\x03\xb9\x00\x03\x42", 0x1fd6 Error: COMPILER_WARNING: [#def1025] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:828:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 828 | "\x00\x03\xca\x00\x03\x00", 0x1fd2 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 826| "\x00\x03\xb9\x00\x03\x06", 0x1fd0 # 827| "\x00\x03\xb9\x00\x03\x04", 0x1fd1 # 828|-> "\x00\x03\xca\x00\x03\x00", 0x1fd2 # 829| "\x00\x03\xb9\x00\x03\x42", 0x1fd6 # 830| "\x00\x03\xca\x00\x03\x42", 0x1fd7 Error: COMPILER_WARNING: [#def1026] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:829:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 829 | "\x00\x03\xb9\x00\x03\x42", 0x1fd6 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 827| "\x00\x03\xb9\x00\x03\x04", 0x1fd1 # 828| "\x00\x03\xca\x00\x03\x00", 0x1fd2 # 829|-> "\x00\x03\xb9\x00\x03\x42", 0x1fd6 # 830| "\x00\x03\xca\x00\x03\x42", 0x1fd7 # 831| "\x00\x03\x99\x00\x03\x06", 0x1fd8 Error: COMPILER_WARNING: [#def1027] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:830:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 830 | "\x00\x03\xca\x00\x03\x42", 0x1fd7 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 828| "\x00\x03\xca\x00\x03\x00", 0x1fd2 # 829| "\x00\x03\xb9\x00\x03\x42", 0x1fd6 # 830|-> "\x00\x03\xca\x00\x03\x42", 0x1fd7 # 831| "\x00\x03\x99\x00\x03\x06", 0x1fd8 # 832| "\x00\x03\x99\x00\x03\x04", 0x1fd9 Error: COMPILER_WARNING: [#def1028] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:831:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 831 | "\x00\x03\x99\x00\x03\x06", 0x1fd8 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 829| "\x00\x03\xb9\x00\x03\x42", 0x1fd6 # 830| "\x00\x03\xca\x00\x03\x42", 0x1fd7 # 831|-> "\x00\x03\x99\x00\x03\x06", 0x1fd8 # 832| "\x00\x03\x99\x00\x03\x04", 0x1fd9 # 833| "\x00\x03\x99\x00\x03\x00", 0x1fda Error: COMPILER_WARNING: [#def1029] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:832:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 832 | "\x00\x03\x99\x00\x03\x04", 0x1fd9 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 830| "\x00\x03\xca\x00\x03\x42", 0x1fd7 # 831| "\x00\x03\x99\x00\x03\x06", 0x1fd8 # 832|-> "\x00\x03\x99\x00\x03\x04", 0x1fd9 # 833| "\x00\x03\x99\x00\x03\x00", 0x1fda # 834| "\x00\x1f\xfe\x00\x03\x00", 0x1fdd Error: COMPILER_WARNING: [#def1030] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:833:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 833 | "\x00\x03\x99\x00\x03\x00", 0x1fda # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 831| "\x00\x03\x99\x00\x03\x06", 0x1fd8 # 832| "\x00\x03\x99\x00\x03\x04", 0x1fd9 # 833|-> "\x00\x03\x99\x00\x03\x00", 0x1fda # 834| "\x00\x1f\xfe\x00\x03\x00", 0x1fdd # 835| "\x00\x1f\xfe\x00\x03\x01", 0x1fde Error: COMPILER_WARNING: [#def1031] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:834:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 834 | "\x00\x1f\xfe\x00\x03\x00", 0x1fdd # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 832| "\x00\x03\x99\x00\x03\x04", 0x1fd9 # 833| "\x00\x03\x99\x00\x03\x00", 0x1fda # 834|-> "\x00\x1f\xfe\x00\x03\x00", 0x1fdd # 835| "\x00\x1f\xfe\x00\x03\x01", 0x1fde # 836| "\x00\x1f\xfe\x00\x03\x42", 0x1fdf Error: COMPILER_WARNING: [#def1032] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:835:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 835 | "\x00\x1f\xfe\x00\x03\x01", 0x1fde # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 833| "\x00\x03\x99\x00\x03\x00", 0x1fda # 834| "\x00\x1f\xfe\x00\x03\x00", 0x1fdd # 835|-> "\x00\x1f\xfe\x00\x03\x01", 0x1fde # 836| "\x00\x1f\xfe\x00\x03\x42", 0x1fdf # 837| "\x00\x03\xc5\x00\x03\x06", 0x1fe0 Error: COMPILER_WARNING: [#def1033] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:836:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 836 | "\x00\x1f\xfe\x00\x03\x42", 0x1fdf # | ^~~~~~~~~~~~~~~~~~~~~~~ # 834| "\x00\x1f\xfe\x00\x03\x00", 0x1fdd # 835| "\x00\x1f\xfe\x00\x03\x01", 0x1fde # 836|-> "\x00\x1f\xfe\x00\x03\x42", 0x1fdf # 837| "\x00\x03\xc5\x00\x03\x06", 0x1fe0 # 838| "\x00\x03\xc5\x00\x03\x04", 0x1fe1 Error: COMPILER_WARNING: [#def1034] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:837:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 837 | "\x00\x03\xc5\x00\x03\x06", 0x1fe0 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 835| "\x00\x1f\xfe\x00\x03\x01", 0x1fde # 836| "\x00\x1f\xfe\x00\x03\x42", 0x1fdf # 837|-> "\x00\x03\xc5\x00\x03\x06", 0x1fe0 # 838| "\x00\x03\xc5\x00\x03\x04", 0x1fe1 # 839| "\x00\x03\xcb\x00\x03\x00", 0x1fe2 Error: COMPILER_WARNING: [#def1035] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:838:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 838 | "\x00\x03\xc5\x00\x03\x04", 0x1fe1 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 836| "\x00\x1f\xfe\x00\x03\x42", 0x1fdf # 837| "\x00\x03\xc5\x00\x03\x06", 0x1fe0 # 838|-> "\x00\x03\xc5\x00\x03\x04", 0x1fe1 # 839| "\x00\x03\xcb\x00\x03\x00", 0x1fe2 # 840| "\x00\x03\xc1\x00\x03\x13", 0x1fe4 Error: COMPILER_WARNING: [#def1036] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:839:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 839 | "\x00\x03\xcb\x00\x03\x00", 0x1fe2 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 837| "\x00\x03\xc5\x00\x03\x06", 0x1fe0 # 838| "\x00\x03\xc5\x00\x03\x04", 0x1fe1 # 839|-> "\x00\x03\xcb\x00\x03\x00", 0x1fe2 # 840| "\x00\x03\xc1\x00\x03\x13", 0x1fe4 # 841| "\x00\x03\xc1\x00\x03\x14", 0x1fe5 Error: COMPILER_WARNING: [#def1037] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:840:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 840 | "\x00\x03\xc1\x00\x03\x13", 0x1fe4 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 838| "\x00\x03\xc5\x00\x03\x04", 0x1fe1 # 839| "\x00\x03\xcb\x00\x03\x00", 0x1fe2 # 840|-> "\x00\x03\xc1\x00\x03\x13", 0x1fe4 # 841| "\x00\x03\xc1\x00\x03\x14", 0x1fe5 # 842| "\x00\x03\xc5\x00\x03\x42", 0x1fe6 Error: COMPILER_WARNING: [#def1038] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:841:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 841 | "\x00\x03\xc1\x00\x03\x14", 0x1fe5 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 839| "\x00\x03\xcb\x00\x03\x00", 0x1fe2 # 840| "\x00\x03\xc1\x00\x03\x13", 0x1fe4 # 841|-> "\x00\x03\xc1\x00\x03\x14", 0x1fe5 # 842| "\x00\x03\xc5\x00\x03\x42", 0x1fe6 # 843| "\x00\x03\xcb\x00\x03\x42", 0x1fe7 Error: COMPILER_WARNING: [#def1039] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:842:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 842 | "\x00\x03\xc5\x00\x03\x42", 0x1fe6 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 840| "\x00\x03\xc1\x00\x03\x13", 0x1fe4 # 841| "\x00\x03\xc1\x00\x03\x14", 0x1fe5 # 842|-> "\x00\x03\xc5\x00\x03\x42", 0x1fe6 # 843| "\x00\x03\xcb\x00\x03\x42", 0x1fe7 # 844| "\x00\x03\xa5\x00\x03\x06", 0x1fe8 Error: COMPILER_WARNING: [#def1040] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:843:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 843 | "\x00\x03\xcb\x00\x03\x42", 0x1fe7 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 841| "\x00\x03\xc1\x00\x03\x14", 0x1fe5 # 842| "\x00\x03\xc5\x00\x03\x42", 0x1fe6 # 843|-> "\x00\x03\xcb\x00\x03\x42", 0x1fe7 # 844| "\x00\x03\xa5\x00\x03\x06", 0x1fe8 # 845| "\x00\x03\xa5\x00\x03\x04", 0x1fe9 Error: COMPILER_WARNING: [#def1041] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:844:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 844 | "\x00\x03\xa5\x00\x03\x06", 0x1fe8 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 842| "\x00\x03\xc5\x00\x03\x42", 0x1fe6 # 843| "\x00\x03\xcb\x00\x03\x42", 0x1fe7 # 844|-> "\x00\x03\xa5\x00\x03\x06", 0x1fe8 # 845| "\x00\x03\xa5\x00\x03\x04", 0x1fe9 # 846| "\x00\x03\xa5\x00\x03\x00", 0x1fea Error: COMPILER_WARNING: [#def1042] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:845:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 845 | "\x00\x03\xa5\x00\x03\x04", 0x1fe9 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 843| "\x00\x03\xcb\x00\x03\x42", 0x1fe7 # 844| "\x00\x03\xa5\x00\x03\x06", 0x1fe8 # 845|-> "\x00\x03\xa5\x00\x03\x04", 0x1fe9 # 846| "\x00\x03\xa5\x00\x03\x00", 0x1fea # 847| "\x00\x03\xa1\x00\x03\x14", 0x1fec Error: COMPILER_WARNING (CWE-909): [#def1043] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:846:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 846 | "\x00\x03\xa5\x00\x03\x00", 0x1fea # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 844| "\x00\x03\xa5\x00\x03\x06", 0x1fe8 # 845| "\x00\x03\xa5\x00\x03\x04", 0x1fe9 # 846|-> "\x00\x03\xa5\x00\x03\x00", 0x1fea # 847| "\x00\x03\xa1\x00\x03\x14", 0x1fec # 848| "\x00\x00\xa8\x00\x03\x00", 0x1fed Error: COMPILER_WARNING: [#def1044] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:846:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 846 | "\x00\x03\xa5\x00\x03\x00", 0x1fea # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 844| "\x00\x03\xa5\x00\x03\x06", 0x1fe8 # 845| "\x00\x03\xa5\x00\x03\x04", 0x1fe9 # 846|-> "\x00\x03\xa5\x00\x03\x00", 0x1fea # 847| "\x00\x03\xa1\x00\x03\x14", 0x1fec # 848| "\x00\x00\xa8\x00\x03\x00", 0x1fed Error: COMPILER_WARNING: [#def1045] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:847:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 847 | "\x00\x03\xa1\x00\x03\x14", 0x1fec # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 845| "\x00\x03\xa5\x00\x03\x04", 0x1fe9 # 846| "\x00\x03\xa5\x00\x03\x00", 0x1fea # 847|-> "\x00\x03\xa1\x00\x03\x14", 0x1fec # 848| "\x00\x00\xa8\x00\x03\x00", 0x1fed # 849| "\x00\x1f\x7c\x00\x03\x45", 0x1ff2 Error: COMPILER_WARNING: [#def1046] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:848:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 848 | "\x00\x00\xa8\x00\x03\x00", 0x1fed # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 846| "\x00\x03\xa5\x00\x03\x00", 0x1fea # 847| "\x00\x03\xa1\x00\x03\x14", 0x1fec # 848|-> "\x00\x00\xa8\x00\x03\x00", 0x1fed # 849| "\x00\x1f\x7c\x00\x03\x45", 0x1ff2 # 850| "\x00\x03\xc9\x00\x03\x45", 0x1ff3 Error: COMPILER_WARNING: [#def1047] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:849:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 849 | "\x00\x1f\x7c\x00\x03\x45", 0x1ff2 # | ^~~~~~~~~~~~~~~~~~~~ # 847| "\x00\x03\xa1\x00\x03\x14", 0x1fec # 848| "\x00\x00\xa8\x00\x03\x00", 0x1fed # 849|-> "\x00\x1f\x7c\x00\x03\x45", 0x1ff2 # 850| "\x00\x03\xc9\x00\x03\x45", 0x1ff3 # 851| "\x00\x03\xce\x00\x03\x45", 0x1ff4 Error: COMPILER_WARNING: [#def1048] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:850:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 850 | "\x00\x03\xc9\x00\x03\x45", 0x1ff3 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 848| "\x00\x00\xa8\x00\x03\x00", 0x1fed # 849| "\x00\x1f\x7c\x00\x03\x45", 0x1ff2 # 850|-> "\x00\x03\xc9\x00\x03\x45", 0x1ff3 # 851| "\x00\x03\xce\x00\x03\x45", 0x1ff4 # 852| "\x00\x03\xc9\x00\x03\x42", 0x1ff6 Error: COMPILER_WARNING (CWE-909): [#def1049] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:851:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 851 | "\x00\x03\xce\x00\x03\x45", 0x1ff4 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 849| "\x00\x1f\x7c\x00\x03\x45", 0x1ff2 # 850| "\x00\x03\xc9\x00\x03\x45", 0x1ff3 # 851|-> "\x00\x03\xce\x00\x03\x45", 0x1ff4 # 852| "\x00\x03\xc9\x00\x03\x42", 0x1ff6 # 853| "\x00\x1f\xf6\x00\x03\x45", 0x1ff7 Error: COMPILER_WARNING: [#def1050] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:851:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 851 | "\x00\x03\xce\x00\x03\x45", 0x1ff4 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 849| "\x00\x1f\x7c\x00\x03\x45", 0x1ff2 # 850| "\x00\x03\xc9\x00\x03\x45", 0x1ff3 # 851|-> "\x00\x03\xce\x00\x03\x45", 0x1ff4 # 852| "\x00\x03\xc9\x00\x03\x42", 0x1ff6 # 853| "\x00\x1f\xf6\x00\x03\x45", 0x1ff7 Error: COMPILER_WARNING: [#def1051] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:852:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 852 | "\x00\x03\xc9\x00\x03\x42", 0x1ff6 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 850| "\x00\x03\xc9\x00\x03\x45", 0x1ff3 # 851| "\x00\x03\xce\x00\x03\x45", 0x1ff4 # 852|-> "\x00\x03\xc9\x00\x03\x42", 0x1ff6 # 853| "\x00\x1f\xf6\x00\x03\x45", 0x1ff7 # 854| "\x00\x03\x9f\x00\x03\x00", 0x1ff8 Error: COMPILER_WARNING: [#def1052] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:853:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 853 | "\x00\x1f\xf6\x00\x03\x45", 0x1ff7 # | ^~~~~~~~~~~~~~~~~~~~~~~ # 851| "\x00\x03\xce\x00\x03\x45", 0x1ff4 # 852| "\x00\x03\xc9\x00\x03\x42", 0x1ff6 # 853|-> "\x00\x1f\xf6\x00\x03\x45", 0x1ff7 # 854| "\x00\x03\x9f\x00\x03\x00", 0x1ff8 # 855| "\x00\x03\xa9\x00\x03\x00", 0x1ffa Error: COMPILER_WARNING: [#def1053] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:854:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 854 | "\x00\x03\x9f\x00\x03\x00", 0x1ff8 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 852| "\x00\x03\xc9\x00\x03\x42", 0x1ff6 # 853| "\x00\x1f\xf6\x00\x03\x45", 0x1ff7 # 854|-> "\x00\x03\x9f\x00\x03\x00", 0x1ff8 # 855| "\x00\x03\xa9\x00\x03\x00", 0x1ffa # 856| "\x00\x03\xa9\x00\x03\x45", 0x1ffc Error: COMPILER_WARNING (CWE-909): [#def1054] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:855:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 855 | "\x00\x03\xa9\x00\x03\x00", 0x1ffa # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 853| "\x00\x1f\xf6\x00\x03\x45", 0x1ff7 # 854| "\x00\x03\x9f\x00\x03\x00", 0x1ff8 # 855|-> "\x00\x03\xa9\x00\x03\x00", 0x1ffa # 856| "\x00\x03\xa9\x00\x03\x45", 0x1ffc # 857| "\x00\x21\x90\x00\x03\x38", 0x219a Error: COMPILER_WARNING: [#def1055] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:855:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 855 | "\x00\x03\xa9\x00\x03\x00", 0x1ffa # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 853| "\x00\x1f\xf6\x00\x03\x45", 0x1ff7 # 854| "\x00\x03\x9f\x00\x03\x00", 0x1ff8 # 855|-> "\x00\x03\xa9\x00\x03\x00", 0x1ffa # 856| "\x00\x03\xa9\x00\x03\x45", 0x1ffc # 857| "\x00\x21\x90\x00\x03\x38", 0x219a Error: COMPILER_WARNING: [#def1056] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:856:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 856 | "\x00\x03\xa9\x00\x03\x45", 0x1ffc # | ^~~~~~~~~~~~~~~~~~~~~~~ # 854| "\x00\x03\x9f\x00\x03\x00", 0x1ff8 # 855| "\x00\x03\xa9\x00\x03\x00", 0x1ffa # 856|-> "\x00\x03\xa9\x00\x03\x45", 0x1ffc # 857| "\x00\x21\x90\x00\x03\x38", 0x219a # 858| "\x00\x21\x92\x00\x03\x38", 0x219b Error: COMPILER_WARNING: [#def1057] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:857:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 857 | "\x00\x21\x90\x00\x03\x38", 0x219a # | ^~~~~~~~~~~~~~~~~~~~ # 855| "\x00\x03\xa9\x00\x03\x00", 0x1ffa # 856| "\x00\x03\xa9\x00\x03\x45", 0x1ffc # 857|-> "\x00\x21\x90\x00\x03\x38", 0x219a # 858| "\x00\x21\x92\x00\x03\x38", 0x219b # 859| "\x00\x21\x94\x00\x03\x38", 0x21ae Error: COMPILER_WARNING: [#def1058] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:859:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 859 | "\x00\x21\x94\x00\x03\x38", 0x21ae # | ^~~~~~~~~~~~~~~~~~~~ # 857| "\x00\x21\x90\x00\x03\x38", 0x219a # 858| "\x00\x21\x92\x00\x03\x38", 0x219b # 859|-> "\x00\x21\x94\x00\x03\x38", 0x21ae # 860| "\x00\x21\xd0\x00\x03\x38", 0x21cd # 861| "\x00\x21\xd4\x00\x03\x38", 0x21ce Error: COMPILER_WARNING: [#def1059] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:860:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 860 | "\x00\x21\xd0\x00\x03\x38", 0x21cd # | ^~~~~~~~~~~~~~~~~~~~ # 858| "\x00\x21\x92\x00\x03\x38", 0x219b # 859| "\x00\x21\x94\x00\x03\x38", 0x21ae # 860|-> "\x00\x21\xd0\x00\x03\x38", 0x21cd # 861| "\x00\x21\xd4\x00\x03\x38", 0x21ce # 862| "\x00\x21\xd2\x00\x03\x38", 0x21cf Error: COMPILER_WARNING (CWE-909): [#def1060] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:862:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 862 | "\x00\x21\xd2\x00\x03\x38", 0x21cf # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 860| "\x00\x21\xd0\x00\x03\x38", 0x21cd # 861| "\x00\x21\xd4\x00\x03\x38", 0x21ce # 862|-> "\x00\x21\xd2\x00\x03\x38", 0x21cf # 863| "\x00\x22\x03\x00\x03\x38", 0x2204 # 864| "\x00\x22\x08\x00\x03\x38", 0x2209 Error: COMPILER_WARNING (CWE-909): [#def1061] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:863:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 863 | "\x00\x22\x03\x00\x03\x38", 0x2204 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 861| "\x00\x21\xd4\x00\x03\x38", 0x21ce # 862| "\x00\x21\xd2\x00\x03\x38", 0x21cf # 863|-> "\x00\x22\x03\x00\x03\x38", 0x2204 # 864| "\x00\x22\x08\x00\x03\x38", 0x2209 # 865| "\x00\x22\x0b\x00\x03\x38", 0x220c Error: COMPILER_WARNING: [#def1062] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:863:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 863 | "\x00\x22\x03\x00\x03\x38", 0x2204 # | ^~~~~~~~~~~~~~~~~~~~~ # 861| "\x00\x21\xd4\x00\x03\x38", 0x21ce # 862| "\x00\x21\xd2\x00\x03\x38", 0x21cf # 863|-> "\x00\x22\x03\x00\x03\x38", 0x2204 # 864| "\x00\x22\x08\x00\x03\x38", 0x2209 # 865| "\x00\x22\x0b\x00\x03\x38", 0x220c Error: COMPILER_WARNING (CWE-909): [#def1063] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:864:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 864 | "\x00\x22\x08\x00\x03\x38", 0x2209 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 862| "\x00\x21\xd2\x00\x03\x38", 0x21cf # 863| "\x00\x22\x03\x00\x03\x38", 0x2204 # 864|-> "\x00\x22\x08\x00\x03\x38", 0x2209 # 865| "\x00\x22\x0b\x00\x03\x38", 0x220c # 866| "\x00\x22\x23\x00\x03\x38", 0x2224 Error: COMPILER_WARNING: [#def1064] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:864:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 864 | "\x00\x22\x08\x00\x03\x38", 0x2209 # | ^~~~~~~~~~~~~~~~~~~~~ # 862| "\x00\x21\xd2\x00\x03\x38", 0x21cf # 863| "\x00\x22\x03\x00\x03\x38", 0x2204 # 864|-> "\x00\x22\x08\x00\x03\x38", 0x2209 # 865| "\x00\x22\x0b\x00\x03\x38", 0x220c # 866| "\x00\x22\x23\x00\x03\x38", 0x2224 Error: COMPILER_WARNING (CWE-909): [#def1065] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:865:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 865 | "\x00\x22\x0b\x00\x03\x38", 0x220c # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 863| "\x00\x22\x03\x00\x03\x38", 0x2204 # 864| "\x00\x22\x08\x00\x03\x38", 0x2209 # 865|-> "\x00\x22\x0b\x00\x03\x38", 0x220c # 866| "\x00\x22\x23\x00\x03\x38", 0x2224 # 867| "\x00\x22\x25\x00\x03\x38", 0x2226 Error: COMPILER_WARNING: [#def1066] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:865:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 865 | "\x00\x22\x0b\x00\x03\x38", 0x220c # | ^~~~~~~~~~~~~~~~~~~~~ # 863| "\x00\x22\x03\x00\x03\x38", 0x2204 # 864| "\x00\x22\x08\x00\x03\x38", 0x2209 # 865|-> "\x00\x22\x0b\x00\x03\x38", 0x220c # 866| "\x00\x22\x23\x00\x03\x38", 0x2224 # 867| "\x00\x22\x25\x00\x03\x38", 0x2226 Error: COMPILER_WARNING (CWE-909): [#def1067] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:866:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 866 | "\x00\x22\x23\x00\x03\x38", 0x2224 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 864| "\x00\x22\x08\x00\x03\x38", 0x2209 # 865| "\x00\x22\x0b\x00\x03\x38", 0x220c # 866|-> "\x00\x22\x23\x00\x03\x38", 0x2224 # 867| "\x00\x22\x25\x00\x03\x38", 0x2226 # 868| "\x00\x22\x3c\x00\x03\x38", 0x2241 Error: COMPILER_WARNING (CWE-909): [#def1068] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:867:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 867 | "\x00\x22\x25\x00\x03\x38", 0x2226 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 865| "\x00\x22\x0b\x00\x03\x38", 0x220c # 866| "\x00\x22\x23\x00\x03\x38", 0x2224 # 867|-> "\x00\x22\x25\x00\x03\x38", 0x2226 # 868| "\x00\x22\x3c\x00\x03\x38", 0x2241 # 869| "\x00\x22\x43\x00\x03\x38", 0x2244 Error: COMPILER_WARNING (CWE-909): [#def1069] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:868:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 868 | "\x00\x22\x3c\x00\x03\x38", 0x2241 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 866| "\x00\x22\x23\x00\x03\x38", 0x2224 # 867| "\x00\x22\x25\x00\x03\x38", 0x2226 # 868|-> "\x00\x22\x3c\x00\x03\x38", 0x2241 # 869| "\x00\x22\x43\x00\x03\x38", 0x2244 # 870| "\x00\x22\x45\x00\x03\x38", 0x2247 Error: COMPILER_WARNING: [#def1070] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:868:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 868 | "\x00\x22\x3c\x00\x03\x38", 0x2241 # | ^~~~~~~~~~~~~~~~~~ # 866| "\x00\x22\x23\x00\x03\x38", 0x2224 # 867| "\x00\x22\x25\x00\x03\x38", 0x2226 # 868|-> "\x00\x22\x3c\x00\x03\x38", 0x2241 # 869| "\x00\x22\x43\x00\x03\x38", 0x2244 # 870| "\x00\x22\x45\x00\x03\x38", 0x2247 Error: COMPILER_WARNING: [#def1071] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:869:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 869 | "\x00\x22\x43\x00\x03\x38", 0x2244 # | ^~~~~~~~~~~~~~~~~~ # 867| "\x00\x22\x25\x00\x03\x38", 0x2226 # 868| "\x00\x22\x3c\x00\x03\x38", 0x2241 # 869|-> "\x00\x22\x43\x00\x03\x38", 0x2244 # 870| "\x00\x22\x45\x00\x03\x38", 0x2247 # 871| "\x00\x22\x48\x00\x03\x38", 0x2249 Error: COMPILER_WARNING: [#def1072] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:870:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 870 | "\x00\x22\x45\x00\x03\x38", 0x2247 # | ^~~~~~~~~~~~~~~~~~ # 868| "\x00\x22\x3c\x00\x03\x38", 0x2241 # 869| "\x00\x22\x43\x00\x03\x38", 0x2244 # 870|-> "\x00\x22\x45\x00\x03\x38", 0x2247 # 871| "\x00\x22\x48\x00\x03\x38", 0x2249 # 872| "\x00\x00\x3d\x00\x03\x38", 0x2260 Error: COMPILER_WARNING: [#def1073] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:871:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 871 | "\x00\x22\x48\x00\x03\x38", 0x2249 # | ^~~~~~~~~~~~~~~~~~ # 869| "\x00\x22\x43\x00\x03\x38", 0x2244 # 870| "\x00\x22\x45\x00\x03\x38", 0x2247 # 871|-> "\x00\x22\x48\x00\x03\x38", 0x2249 # 872| "\x00\x00\x3d\x00\x03\x38", 0x2260 # 873| "\x00\x22\x61\x00\x03\x38", 0x2262 Error: COMPILER_WARNING: [#def1074] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:872:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 872 | "\x00\x00\x3d\x00\x03\x38", 0x2260 # | ^~~~~~~~~~~~~~~~~~~~ # 870| "\x00\x22\x45\x00\x03\x38", 0x2247 # 871| "\x00\x22\x48\x00\x03\x38", 0x2249 # 872|-> "\x00\x00\x3d\x00\x03\x38", 0x2260 # 873| "\x00\x22\x61\x00\x03\x38", 0x2262 # 874| "\x00\x22\x4d\x00\x03\x38", 0x226d Error: COMPILER_WARNING: [#def1075] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:873:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 873 | "\x00\x22\x61\x00\x03\x38", 0x2262 # | ^~~~~~~~~~~~~~~~~~ # 871| "\x00\x22\x48\x00\x03\x38", 0x2249 # 872| "\x00\x00\x3d\x00\x03\x38", 0x2260 # 873|-> "\x00\x22\x61\x00\x03\x38", 0x2262 # 874| "\x00\x22\x4d\x00\x03\x38", 0x226d # 875| "\x00\x00\x3c\x00\x03\x38", 0x226e Error: COMPILER_WARNING: [#def1076] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:874:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 874 | "\x00\x22\x4d\x00\x03\x38", 0x226d # | ^~~~~~~~~~~~~~~~~~ # 872| "\x00\x00\x3d\x00\x03\x38", 0x2260 # 873| "\x00\x22\x61\x00\x03\x38", 0x2262 # 874|-> "\x00\x22\x4d\x00\x03\x38", 0x226d # 875| "\x00\x00\x3c\x00\x03\x38", 0x226e # 876| "\x00\x00\x3e\x00\x03\x38", 0x226f Error: COMPILER_WARNING: [#def1077] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:875:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 875 | "\x00\x00\x3c\x00\x03\x38", 0x226e # | ^~~~~~~~~~~~~~~~~~~~ # 873| "\x00\x22\x61\x00\x03\x38", 0x2262 # 874| "\x00\x22\x4d\x00\x03\x38", 0x226d # 875|-> "\x00\x00\x3c\x00\x03\x38", 0x226e # 876| "\x00\x00\x3e\x00\x03\x38", 0x226f # 877| "\x00\x22\x64\x00\x03\x38", 0x2270 Error: COMPILER_WARNING: [#def1078] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:876:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 876 | "\x00\x00\x3e\x00\x03\x38", 0x226f # | ^~~~~~~~~~~~~~~~~~~~ # 874| "\x00\x22\x4d\x00\x03\x38", 0x226d # 875| "\x00\x00\x3c\x00\x03\x38", 0x226e # 876|-> "\x00\x00\x3e\x00\x03\x38", 0x226f # 877| "\x00\x22\x64\x00\x03\x38", 0x2270 # 878| "\x00\x22\x65\x00\x03\x38", 0x2271 Error: COMPILER_WARNING: [#def1079] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:877:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 877 | "\x00\x22\x64\x00\x03\x38", 0x2270 # | ^~~~~~~~~~~~~~~~~~ # 875| "\x00\x00\x3c\x00\x03\x38", 0x226e # 876| "\x00\x00\x3e\x00\x03\x38", 0x226f # 877|-> "\x00\x22\x64\x00\x03\x38", 0x2270 # 878| "\x00\x22\x65\x00\x03\x38", 0x2271 # 879| "\x00\x22\x72\x00\x03\x38", 0x2274 Error: COMPILER_WARNING: [#def1080] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:878:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 878 | "\x00\x22\x65\x00\x03\x38", 0x2271 # | ^~~~~~~~~~~~~~~~~~ # 876| "\x00\x00\x3e\x00\x03\x38", 0x226f # 877| "\x00\x22\x64\x00\x03\x38", 0x2270 # 878|-> "\x00\x22\x65\x00\x03\x38", 0x2271 # 879| "\x00\x22\x72\x00\x03\x38", 0x2274 # 880| "\x00\x22\x73\x00\x03\x38", 0x2275 Error: COMPILER_WARNING: [#def1081] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:879:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 879 | "\x00\x22\x72\x00\x03\x38", 0x2274 # | ^~~~~~~~~~~~~~~~~~ # 877| "\x00\x22\x64\x00\x03\x38", 0x2270 # 878| "\x00\x22\x65\x00\x03\x38", 0x2271 # 879|-> "\x00\x22\x72\x00\x03\x38", 0x2274 # 880| "\x00\x22\x73\x00\x03\x38", 0x2275 # 881| "\x00\x22\x76\x00\x03\x38", 0x2278 Error: COMPILER_WARNING (CWE-909): [#def1082] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:881:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 881 | "\x00\x22\x76\x00\x03\x38", 0x2278 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 879| "\x00\x22\x72\x00\x03\x38", 0x2274 # 880| "\x00\x22\x73\x00\x03\x38", 0x2275 # 881|-> "\x00\x22\x76\x00\x03\x38", 0x2278 # 882| "\x00\x22\x77\x00\x03\x38", 0x2279 # 883| "\x00\x22\x7a\x00\x03\x38", 0x2280 Error: COMPILER_WARNING: [#def1083] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:881:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 881 | "\x00\x22\x76\x00\x03\x38", 0x2278 # | ^~~~~~~~~~~~~~~~~~ # 879| "\x00\x22\x72\x00\x03\x38", 0x2274 # 880| "\x00\x22\x73\x00\x03\x38", 0x2275 # 881|-> "\x00\x22\x76\x00\x03\x38", 0x2278 # 882| "\x00\x22\x77\x00\x03\x38", 0x2279 # 883| "\x00\x22\x7a\x00\x03\x38", 0x2280 Error: COMPILER_WARNING: [#def1084] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:882:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 882 | "\x00\x22\x77\x00\x03\x38", 0x2279 # | ^~~~~~~~~~~~~~~~~~ # 880| "\x00\x22\x73\x00\x03\x38", 0x2275 # 881| "\x00\x22\x76\x00\x03\x38", 0x2278 # 882|-> "\x00\x22\x77\x00\x03\x38", 0x2279 # 883| "\x00\x22\x7a\x00\x03\x38", 0x2280 # 884| "\x00\x22\x7b\x00\x03\x38", 0x2281 Error: COMPILER_WARNING (CWE-909): [#def1085] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:884:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 884 | "\x00\x22\x7b\x00\x03\x38", 0x2281 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 882| "\x00\x22\x77\x00\x03\x38", 0x2279 # 883| "\x00\x22\x7a\x00\x03\x38", 0x2280 # 884|-> "\x00\x22\x7b\x00\x03\x38", 0x2281 # 885| "\x00\x22\x82\x00\x03\x38", 0x2284 # 886| "\x00\x22\x83\x00\x03\x38", 0x2285 Error: COMPILER_WARNING: [#def1086] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:884:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 884 | "\x00\x22\x7b\x00\x03\x38", 0x2281 # | ^~~~~~~~~~~~~~~~~~ # 882| "\x00\x22\x77\x00\x03\x38", 0x2279 # 883| "\x00\x22\x7a\x00\x03\x38", 0x2280 # 884|-> "\x00\x22\x7b\x00\x03\x38", 0x2281 # 885| "\x00\x22\x82\x00\x03\x38", 0x2284 # 886| "\x00\x22\x83\x00\x03\x38", 0x2285 Error: COMPILER_WARNING: [#def1087] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:885:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 885 | "\x00\x22\x82\x00\x03\x38", 0x2284 # | ^~~~~~~~~~~~~~~~~~~~~ # 883| "\x00\x22\x7a\x00\x03\x38", 0x2280 # 884| "\x00\x22\x7b\x00\x03\x38", 0x2281 # 885|-> "\x00\x22\x82\x00\x03\x38", 0x2284 # 886| "\x00\x22\x83\x00\x03\x38", 0x2285 # 887| "\x00\x22\x86\x00\x03\x38", 0x2288 Error: COMPILER_WARNING: [#def1088] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:886:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 886 | "\x00\x22\x83\x00\x03\x38", 0x2285 # | ^~~~~~~~~~~~~~~~~~~~~ # 884| "\x00\x22\x7b\x00\x03\x38", 0x2281 # 885| "\x00\x22\x82\x00\x03\x38", 0x2284 # 886|-> "\x00\x22\x83\x00\x03\x38", 0x2285 # 887| "\x00\x22\x86\x00\x03\x38", 0x2288 # 888| "\x00\x22\x87\x00\x03\x38", 0x2289 Error: COMPILER_WARNING: [#def1089] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:887:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 887 | "\x00\x22\x86\x00\x03\x38", 0x2288 # | ^~~~~~~~~~~~~~~~~~~~~ # 885| "\x00\x22\x82\x00\x03\x38", 0x2284 # 886| "\x00\x22\x83\x00\x03\x38", 0x2285 # 887|-> "\x00\x22\x86\x00\x03\x38", 0x2288 # 888| "\x00\x22\x87\x00\x03\x38", 0x2289 # 889| "\x00\x22\xa2\x00\x03\x38", 0x22ac Error: COMPILER_WARNING: [#def1090] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:888:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 888 | "\x00\x22\x87\x00\x03\x38", 0x2289 # | ^~~~~~~~~~~~~~~~~~~~~ # 886| "\x00\x22\x83\x00\x03\x38", 0x2285 # 887| "\x00\x22\x86\x00\x03\x38", 0x2288 # 888|-> "\x00\x22\x87\x00\x03\x38", 0x2289 # 889| "\x00\x22\xa2\x00\x03\x38", 0x22ac # 890| "\x00\x22\xa8\x00\x03\x38", 0x22ad Error: COMPILER_WARNING: [#def1091] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:889:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 889 | "\x00\x22\xa2\x00\x03\x38", 0x22ac # | ^~~~~~~~~~~~~~~~~~~~~ # 887| "\x00\x22\x86\x00\x03\x38", 0x2288 # 888| "\x00\x22\x87\x00\x03\x38", 0x2289 # 889|-> "\x00\x22\xa2\x00\x03\x38", 0x22ac # 890| "\x00\x22\xa8\x00\x03\x38", 0x22ad # 891| "\x00\x22\xa9\x00\x03\x38", 0x22ae Error: COMPILER_WARNING (CWE-909): [#def1092] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:891:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 891 | "\x00\x22\xa9\x00\x03\x38", 0x22ae # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 889| "\x00\x22\xa2\x00\x03\x38", 0x22ac # 890| "\x00\x22\xa8\x00\x03\x38", 0x22ad # 891|-> "\x00\x22\xa9\x00\x03\x38", 0x22ae # 892| "\x00\x22\xab\x00\x03\x38", 0x22af # 893| "\x00\x22\x7c\x00\x03\x38", 0x22e0 Error: COMPILER_WARNING (CWE-909): [#def1093] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:892:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 892 | "\x00\x22\xab\x00\x03\x38", 0x22af # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 890| "\x00\x22\xa8\x00\x03\x38", 0x22ad # 891| "\x00\x22\xa9\x00\x03\x38", 0x22ae # 892|-> "\x00\x22\xab\x00\x03\x38", 0x22af # 893| "\x00\x22\x7c\x00\x03\x38", 0x22e0 # 894| "\x00\x22\x7d\x00\x03\x38", 0x22e1 Error: COMPILER_WARNING: [#def1094] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:892:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 892 | "\x00\x22\xab\x00\x03\x38", 0x22af # | ^~~~~~~~~~~~~~~~~~~~~ # 890| "\x00\x22\xa8\x00\x03\x38", 0x22ad # 891| "\x00\x22\xa9\x00\x03\x38", 0x22ae # 892|-> "\x00\x22\xab\x00\x03\x38", 0x22af # 893| "\x00\x22\x7c\x00\x03\x38", 0x22e0 # 894| "\x00\x22\x7d\x00\x03\x38", 0x22e1 Error: COMPILER_WARNING: [#def1095] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:893:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 893 | "\x00\x22\x7c\x00\x03\x38", 0x22e0 # | ^~~~~~~~~~~~~~~~~~ # 891| "\x00\x22\xa9\x00\x03\x38", 0x22ae # 892| "\x00\x22\xab\x00\x03\x38", 0x22af # 893|-> "\x00\x22\x7c\x00\x03\x38", 0x22e0 # 894| "\x00\x22\x7d\x00\x03\x38", 0x22e1 # 895| "\x00\x22\x91\x00\x03\x38", 0x22e2 Error: COMPILER_WARNING: [#def1096] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:894:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 894 | "\x00\x22\x7d\x00\x03\x38", 0x22e1 # | ^~~~~~~~~~~~~~~~~~ # 892| "\x00\x22\xab\x00\x03\x38", 0x22af # 893| "\x00\x22\x7c\x00\x03\x38", 0x22e0 # 894|-> "\x00\x22\x7d\x00\x03\x38", 0x22e1 # 895| "\x00\x22\x91\x00\x03\x38", 0x22e2 # 896| "\x00\x22\x92\x00\x03\x38", 0x22e3 Error: COMPILER_WARNING: [#def1097] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:895:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 895 | "\x00\x22\x91\x00\x03\x38", 0x22e2 # | ^~~~~~~~~~~~~~~~~~~~~ # 893| "\x00\x22\x7c\x00\x03\x38", 0x22e0 # 894| "\x00\x22\x7d\x00\x03\x38", 0x22e1 # 895|-> "\x00\x22\x91\x00\x03\x38", 0x22e2 # 896| "\x00\x22\x92\x00\x03\x38", 0x22e3 # 897| "\x00\x22\xb2\x00\x03\x38", 0x22ea Error: COMPILER_WARNING: [#def1098] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:896:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 896 | "\x00\x22\x92\x00\x03\x38", 0x22e3 # | ^~~~~~~~~~~~~~~~~~~~~ # 894| "\x00\x22\x7d\x00\x03\x38", 0x22e1 # 895| "\x00\x22\x91\x00\x03\x38", 0x22e2 # 896|-> "\x00\x22\x92\x00\x03\x38", 0x22e3 # 897| "\x00\x22\xb2\x00\x03\x38", 0x22ea # 898| "\x00\x22\xb3\x00\x03\x38", 0x22eb Error: COMPILER_WARNING: [#def1099] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:897:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 897 | "\x00\x22\xb2\x00\x03\x38", 0x22ea # | ^~~~~~~~~~~~~~~~~~~~~ # 895| "\x00\x22\x91\x00\x03\x38", 0x22e2 # 896| "\x00\x22\x92\x00\x03\x38", 0x22e3 # 897|-> "\x00\x22\xb2\x00\x03\x38", 0x22ea # 898| "\x00\x22\xb3\x00\x03\x38", 0x22eb # 899| "\x00\x22\xb4\x00\x03\x38", 0x22ec Error: COMPILER_WARNING: [#def1100] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:898:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 898 | "\x00\x22\xb3\x00\x03\x38", 0x22eb # | ^~~~~~~~~~~~~~~~~~~~~ # 896| "\x00\x22\x92\x00\x03\x38", 0x22e3 # 897| "\x00\x22\xb2\x00\x03\x38", 0x22ea # 898|-> "\x00\x22\xb3\x00\x03\x38", 0x22eb # 899| "\x00\x22\xb4\x00\x03\x38", 0x22ec # 900| "\x00\x22\xb5\x00\x03\x38", 0x22ed Error: COMPILER_WARNING: [#def1101] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:899:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 899 | "\x00\x22\xb4\x00\x03\x38", 0x22ec # | ^~~~~~~~~~~~~~~~~~~~~ # 897| "\x00\x22\xb2\x00\x03\x38", 0x22ea # 898| "\x00\x22\xb3\x00\x03\x38", 0x22eb # 899|-> "\x00\x22\xb4\x00\x03\x38", 0x22ec # 900| "\x00\x22\xb5\x00\x03\x38", 0x22ed # 901| "\x00\x30\x4b\x00\x30\x99", 0x304c Error: COMPILER_WARNING (CWE-909): [#def1102] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:901:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 901 | "\x00\x30\x4b\x00\x30\x99", 0x304c # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 899| "\x00\x22\xb4\x00\x03\x38", 0x22ec # 900| "\x00\x22\xb5\x00\x03\x38", 0x22ed # 901|-> "\x00\x30\x4b\x00\x30\x99", 0x304c # 902| "\x00\x30\x4d\x00\x30\x99", 0x304e # 903| "\x00\x30\x4f\x00\x30\x99", 0x3050 Error: COMPILER_WARNING: [#def1103] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:901:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 901 | "\x00\x30\x4b\x00\x30\x99", 0x304c # | ^~~~~~~~~~~~~~~~~ # 899| "\x00\x22\xb4\x00\x03\x38", 0x22ec # 900| "\x00\x22\xb5\x00\x03\x38", 0x22ed # 901|-> "\x00\x30\x4b\x00\x30\x99", 0x304c # 902| "\x00\x30\x4d\x00\x30\x99", 0x304e # 903| "\x00\x30\x4f\x00\x30\x99", 0x3050 Error: COMPILER_WARNING: [#def1104] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:902:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 902 | "\x00\x30\x4d\x00\x30\x99", 0x304e # | ^~~~~~~~~~~~~~~~~ # 900| "\x00\x22\xb5\x00\x03\x38", 0x22ed # 901| "\x00\x30\x4b\x00\x30\x99", 0x304c # 902|-> "\x00\x30\x4d\x00\x30\x99", 0x304e # 903| "\x00\x30\x4f\x00\x30\x99", 0x3050 # 904| "\x00\x30\x51\x00\x30\x99", 0x3052 Error: COMPILER_WARNING: [#def1105] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:903:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 903 | "\x00\x30\x4f\x00\x30\x99", 0x3050 # | ^~~~~~~~~~~~~~~~~ # 901| "\x00\x30\x4b\x00\x30\x99", 0x304c # 902| "\x00\x30\x4d\x00\x30\x99", 0x304e # 903|-> "\x00\x30\x4f\x00\x30\x99", 0x3050 # 904| "\x00\x30\x51\x00\x30\x99", 0x3052 # 905| "\x00\x30\x53\x00\x30\x99", 0x3054 Error: COMPILER_WARNING (CWE-909): [#def1106] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:905:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 905 | "\x00\x30\x53\x00\x30\x99", 0x3054 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 903| "\x00\x30\x4f\x00\x30\x99", 0x3050 # 904| "\x00\x30\x51\x00\x30\x99", 0x3052 # 905|-> "\x00\x30\x53\x00\x30\x99", 0x3054 # 906| "\x00\x30\x55\x00\x30\x99", 0x3056 # 907| "\x00\x30\x57\x00\x30\x99", 0x3058 Error: COMPILER_WARNING: [#def1107] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:905:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 905 | "\x00\x30\x53\x00\x30\x99", 0x3054 # | ^~~~~~~~~~~~~~~~~ # 903| "\x00\x30\x4f\x00\x30\x99", 0x3050 # 904| "\x00\x30\x51\x00\x30\x99", 0x3052 # 905|-> "\x00\x30\x53\x00\x30\x99", 0x3054 # 906| "\x00\x30\x55\x00\x30\x99", 0x3056 # 907| "\x00\x30\x57\x00\x30\x99", 0x3058 Error: COMPILER_WARNING: [#def1108] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:906:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 906 | "\x00\x30\x55\x00\x30\x99", 0x3056 # | ^~~~~~~~~~~~~~~~~ # 904| "\x00\x30\x51\x00\x30\x99", 0x3052 # 905| "\x00\x30\x53\x00\x30\x99", 0x3054 # 906|-> "\x00\x30\x55\x00\x30\x99", 0x3056 # 907| "\x00\x30\x57\x00\x30\x99", 0x3058 # 908| "\x00\x30\x59\x00\x30\x99", 0x305a Error: COMPILER_WARNING: [#def1109] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:907:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 907 | "\x00\x30\x57\x00\x30\x99", 0x3058 # | ^~~~~~~~~~~~~~~~~ # 905| "\x00\x30\x53\x00\x30\x99", 0x3054 # 906| "\x00\x30\x55\x00\x30\x99", 0x3056 # 907|-> "\x00\x30\x57\x00\x30\x99", 0x3058 # 908| "\x00\x30\x59\x00\x30\x99", 0x305a # 909| "\x00\x30\x5b\x00\x30\x99", 0x305c Error: COMPILER_WARNING: [#def1110] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:908:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 908 | "\x00\x30\x59\x00\x30\x99", 0x305a # | ^~~~~~~~~~~~~~~~~ # 906| "\x00\x30\x55\x00\x30\x99", 0x3056 # 907| "\x00\x30\x57\x00\x30\x99", 0x3058 # 908|-> "\x00\x30\x59\x00\x30\x99", 0x305a # 909| "\x00\x30\x5b\x00\x30\x99", 0x305c # 910| "\x00\x30\x5d\x00\x30\x99", 0x305e Error: COMPILER_WARNING: [#def1111] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:909:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 909 | "\x00\x30\x5b\x00\x30\x99", 0x305c # | ^~~~~~~~~~~~~~~~~ # 907| "\x00\x30\x57\x00\x30\x99", 0x3058 # 908| "\x00\x30\x59\x00\x30\x99", 0x305a # 909|-> "\x00\x30\x5b\x00\x30\x99", 0x305c # 910| "\x00\x30\x5d\x00\x30\x99", 0x305e # 911| "\x00\x30\x5f\x00\x30\x99", 0x3060 Error: COMPILER_WARNING: [#def1112] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:910:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 910 | "\x00\x30\x5d\x00\x30\x99", 0x305e # | ^~~~~~~~~~~~~~~~~ # 908| "\x00\x30\x59\x00\x30\x99", 0x305a # 909| "\x00\x30\x5b\x00\x30\x99", 0x305c # 910|-> "\x00\x30\x5d\x00\x30\x99", 0x305e # 911| "\x00\x30\x5f\x00\x30\x99", 0x3060 # 912| "\x00\x30\x61\x00\x30\x99", 0x3062 Error: COMPILER_WARNING: [#def1113] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:911:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 911 | "\x00\x30\x5f\x00\x30\x99", 0x3060 # | ^~~~~~~~~~~~~~~~~ # 909| "\x00\x30\x5b\x00\x30\x99", 0x305c # 910| "\x00\x30\x5d\x00\x30\x99", 0x305e # 911|-> "\x00\x30\x5f\x00\x30\x99", 0x3060 # 912| "\x00\x30\x61\x00\x30\x99", 0x3062 # 913| "\x00\x30\x64\x00\x30\x99", 0x3065 Error: COMPILER_WARNING: [#def1114] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:912:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 912 | "\x00\x30\x61\x00\x30\x99", 0x3062 # | ^~~~~~~~~~~~~~~~~ # 910| "\x00\x30\x5d\x00\x30\x99", 0x305e # 911| "\x00\x30\x5f\x00\x30\x99", 0x3060 # 912|-> "\x00\x30\x61\x00\x30\x99", 0x3062 # 913| "\x00\x30\x64\x00\x30\x99", 0x3065 # 914| "\x00\x30\x66\x00\x30\x99", 0x3067 Error: COMPILER_WARNING: [#def1115] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:913:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 913 | "\x00\x30\x64\x00\x30\x99", 0x3065 # | ^~~~~~~~~~~~~~~~~ # 911| "\x00\x30\x5f\x00\x30\x99", 0x3060 # 912| "\x00\x30\x61\x00\x30\x99", 0x3062 # 913|-> "\x00\x30\x64\x00\x30\x99", 0x3065 # 914| "\x00\x30\x66\x00\x30\x99", 0x3067 # 915| "\x00\x30\x68\x00\x30\x99", 0x3069 Error: COMPILER_WARNING: [#def1116] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:914:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 914 | "\x00\x30\x66\x00\x30\x99", 0x3067 # | ^~~~~~~~~~~~~~~~~ # 912| "\x00\x30\x61\x00\x30\x99", 0x3062 # 913| "\x00\x30\x64\x00\x30\x99", 0x3065 # 914|-> "\x00\x30\x66\x00\x30\x99", 0x3067 # 915| "\x00\x30\x68\x00\x30\x99", 0x3069 # 916| "\x00\x30\x6f\x00\x30\x99", 0x3070 Error: COMPILER_WARNING: [#def1117] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:915:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 915 | "\x00\x30\x68\x00\x30\x99", 0x3069 # | ^~~~~~~~~~~~~~~~~ # 913| "\x00\x30\x64\x00\x30\x99", 0x3065 # 914| "\x00\x30\x66\x00\x30\x99", 0x3067 # 915|-> "\x00\x30\x68\x00\x30\x99", 0x3069 # 916| "\x00\x30\x6f\x00\x30\x99", 0x3070 # 917| "\x00\x30\x6f\x00\x30\x9a", 0x3071 Error: COMPILER_WARNING: [#def1118] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:916:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 916 | "\x00\x30\x6f\x00\x30\x99", 0x3070 # | ^~~~~~~~~~~~~~~~~ # 914| "\x00\x30\x66\x00\x30\x99", 0x3067 # 915| "\x00\x30\x68\x00\x30\x99", 0x3069 # 916|-> "\x00\x30\x6f\x00\x30\x99", 0x3070 # 917| "\x00\x30\x6f\x00\x30\x9a", 0x3071 # 918| "\x00\x30\x72\x00\x30\x99", 0x3073 Error: COMPILER_WARNING: [#def1119] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:917:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 917 | "\x00\x30\x6f\x00\x30\x9a", 0x3071 # | ^~~~~~~~~~~~~~~~~ # 915| "\x00\x30\x68\x00\x30\x99", 0x3069 # 916| "\x00\x30\x6f\x00\x30\x99", 0x3070 # 917|-> "\x00\x30\x6f\x00\x30\x9a", 0x3071 # 918| "\x00\x30\x72\x00\x30\x99", 0x3073 # 919| "\x00\x30\x72\x00\x30\x9a", 0x3074 Error: COMPILER_WARNING: [#def1120] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:918:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 918 | "\x00\x30\x72\x00\x30\x99", 0x3073 # | ^~~~~~~~~~~~~~~~~ # 916| "\x00\x30\x6f\x00\x30\x99", 0x3070 # 917| "\x00\x30\x6f\x00\x30\x9a", 0x3071 # 918|-> "\x00\x30\x72\x00\x30\x99", 0x3073 # 919| "\x00\x30\x72\x00\x30\x9a", 0x3074 # 920| "\x00\x30\x75\x00\x30\x99", 0x3076 Error: COMPILER_WARNING: [#def1121] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:919:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 919 | "\x00\x30\x72\x00\x30\x9a", 0x3074 # | ^~~~~~~~~~~~~~~~~ # 917| "\x00\x30\x6f\x00\x30\x9a", 0x3071 # 918| "\x00\x30\x72\x00\x30\x99", 0x3073 # 919|-> "\x00\x30\x72\x00\x30\x9a", 0x3074 # 920| "\x00\x30\x75\x00\x30\x99", 0x3076 # 921| "\x00\x30\x75\x00\x30\x9a", 0x3077 Error: COMPILER_WARNING: [#def1122] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:920:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 920 | "\x00\x30\x75\x00\x30\x99", 0x3076 # | ^~~~~~~~~~~~~~~~~ # 918| "\x00\x30\x72\x00\x30\x99", 0x3073 # 919| "\x00\x30\x72\x00\x30\x9a", 0x3074 # 920|-> "\x00\x30\x75\x00\x30\x99", 0x3076 # 921| "\x00\x30\x75\x00\x30\x9a", 0x3077 # 922| "\x00\x30\x78\x00\x30\x99", 0x3079 Error: COMPILER_WARNING: [#def1123] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:921:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 921 | "\x00\x30\x75\x00\x30\x9a", 0x3077 # | ^~~~~~~~~~~~~~~~~ # 919| "\x00\x30\x72\x00\x30\x9a", 0x3074 # 920| "\x00\x30\x75\x00\x30\x99", 0x3076 # 921|-> "\x00\x30\x75\x00\x30\x9a", 0x3077 # 922| "\x00\x30\x78\x00\x30\x99", 0x3079 # 923| "\x00\x30\x78\x00\x30\x9a", 0x307a Error: COMPILER_WARNING: [#def1124] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:922:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 922 | "\x00\x30\x78\x00\x30\x99", 0x3079 # | ^~~~~~~~~~~~~~~~~ # 920| "\x00\x30\x75\x00\x30\x99", 0x3076 # 921| "\x00\x30\x75\x00\x30\x9a", 0x3077 # 922|-> "\x00\x30\x78\x00\x30\x99", 0x3079 # 923| "\x00\x30\x78\x00\x30\x9a", 0x307a # 924| "\x00\x30\x7b\x00\x30\x99", 0x307c Error: COMPILER_WARNING: [#def1125] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:923:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 923 | "\x00\x30\x78\x00\x30\x9a", 0x307a # | ^~~~~~~~~~~~~~~~~ # 921| "\x00\x30\x75\x00\x30\x9a", 0x3077 # 922| "\x00\x30\x78\x00\x30\x99", 0x3079 # 923|-> "\x00\x30\x78\x00\x30\x9a", 0x307a # 924| "\x00\x30\x7b\x00\x30\x99", 0x307c # 925| "\x00\x30\x7b\x00\x30\x9a", 0x307d Error: COMPILER_WARNING (CWE-909): [#def1126] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:924:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 924 | "\x00\x30\x7b\x00\x30\x99", 0x307c # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 922| "\x00\x30\x78\x00\x30\x99", 0x3079 # 923| "\x00\x30\x78\x00\x30\x9a", 0x307a # 924|-> "\x00\x30\x7b\x00\x30\x99", 0x307c # 925| "\x00\x30\x7b\x00\x30\x9a", 0x307d # 926| "\x00\x30\x46\x00\x30\x99", 0x3094 Error: COMPILER_WARNING: [#def1127] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:924:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 924 | "\x00\x30\x7b\x00\x30\x99", 0x307c # | ^~~~~~~~~~~~~~~~~ # 922| "\x00\x30\x78\x00\x30\x99", 0x3079 # 923| "\x00\x30\x78\x00\x30\x9a", 0x307a # 924|-> "\x00\x30\x7b\x00\x30\x99", 0x307c # 925| "\x00\x30\x7b\x00\x30\x9a", 0x307d # 926| "\x00\x30\x46\x00\x30\x99", 0x3094 Error: COMPILER_WARNING: [#def1128] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:925:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 925 | "\x00\x30\x7b\x00\x30\x9a", 0x307d # | ^~~~~~~~~~~~~~~~~ # 923| "\x00\x30\x78\x00\x30\x9a", 0x307a # 924| "\x00\x30\x7b\x00\x30\x99", 0x307c # 925|-> "\x00\x30\x7b\x00\x30\x9a", 0x307d # 926| "\x00\x30\x46\x00\x30\x99", 0x3094 # 927| "\x00\x30\x9d\x00\x30\x99", 0x309e Error: COMPILER_WARNING (CWE-909): [#def1129] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:926:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 926 | "\x00\x30\x46\x00\x30\x99", 0x3094 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 924| "\x00\x30\x7b\x00\x30\x99", 0x307c # 925| "\x00\x30\x7b\x00\x30\x9a", 0x307d # 926|-> "\x00\x30\x46\x00\x30\x99", 0x3094 # 927| "\x00\x30\x9d\x00\x30\x99", 0x309e # 928| "\x00\x30\xab\x00\x30\x99", 0x30ac Error: COMPILER_WARNING: [#def1130] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:926:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 926 | "\x00\x30\x46\x00\x30\x99", 0x3094 # | ^~~~~~~~~~~~~~~~~ # 924| "\x00\x30\x7b\x00\x30\x99", 0x307c # 925| "\x00\x30\x7b\x00\x30\x9a", 0x307d # 926|-> "\x00\x30\x46\x00\x30\x99", 0x3094 # 927| "\x00\x30\x9d\x00\x30\x99", 0x309e # 928| "\x00\x30\xab\x00\x30\x99", 0x30ac Error: COMPILER_WARNING: [#def1131] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:927:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 927 | "\x00\x30\x9d\x00\x30\x99", 0x309e # | ^~~~~~~~~~~~~~~~~~~~ # 925| "\x00\x30\x7b\x00\x30\x9a", 0x307d # 926| "\x00\x30\x46\x00\x30\x99", 0x3094 # 927|-> "\x00\x30\x9d\x00\x30\x99", 0x309e # 928| "\x00\x30\xab\x00\x30\x99", 0x30ac # 929| "\x00\x30\xad\x00\x30\x99", 0x30ae Error: COMPILER_WARNING: [#def1132] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:928:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 928 | "\x00\x30\xab\x00\x30\x99", 0x30ac # | ^~~~~~~~~~~~~~~~~~~~ # 926| "\x00\x30\x46\x00\x30\x99", 0x3094 # 927| "\x00\x30\x9d\x00\x30\x99", 0x309e # 928|-> "\x00\x30\xab\x00\x30\x99", 0x30ac # 929| "\x00\x30\xad\x00\x30\x99", 0x30ae # 930| "\x00\x30\xaf\x00\x30\x99", 0x30b0 Error: COMPILER_WARNING: [#def1133] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:929:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 929 | "\x00\x30\xad\x00\x30\x99", 0x30ae # | ^~~~~~~~~~~~~~~~~~~~ # 927| "\x00\x30\x9d\x00\x30\x99", 0x309e # 928| "\x00\x30\xab\x00\x30\x99", 0x30ac # 929|-> "\x00\x30\xad\x00\x30\x99", 0x30ae # 930| "\x00\x30\xaf\x00\x30\x99", 0x30b0 # 931| "\x00\x30\xb1\x00\x30\x99", 0x30b2 Error: COMPILER_WARNING: [#def1134] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:930:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 930 | "\x00\x30\xaf\x00\x30\x99", 0x30b0 # | ^~~~~~~~~~~~~~~~~~~~ # 928| "\x00\x30\xab\x00\x30\x99", 0x30ac # 929| "\x00\x30\xad\x00\x30\x99", 0x30ae # 930|-> "\x00\x30\xaf\x00\x30\x99", 0x30b0 # 931| "\x00\x30\xb1\x00\x30\x99", 0x30b2 # 932| "\x00\x30\xb3\x00\x30\x99", 0x30b4 Error: COMPILER_WARNING: [#def1135] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:931:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 931 | "\x00\x30\xb1\x00\x30\x99", 0x30b2 # | ^~~~~~~~~~~~~~~~~~~~ # 929| "\x00\x30\xad\x00\x30\x99", 0x30ae # 930| "\x00\x30\xaf\x00\x30\x99", 0x30b0 # 931|-> "\x00\x30\xb1\x00\x30\x99", 0x30b2 # 932| "\x00\x30\xb3\x00\x30\x99", 0x30b4 # 933| "\x00\x30\xb5\x00\x30\x99", 0x30b6 Error: COMPILER_WARNING: [#def1136] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:932:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 932 | "\x00\x30\xb3\x00\x30\x99", 0x30b4 # | ^~~~~~~~~~~~~~~~~~~~ # 930| "\x00\x30\xaf\x00\x30\x99", 0x30b0 # 931| "\x00\x30\xb1\x00\x30\x99", 0x30b2 # 932|-> "\x00\x30\xb3\x00\x30\x99", 0x30b4 # 933| "\x00\x30\xb5\x00\x30\x99", 0x30b6 # 934| "\x00\x30\xb7\x00\x30\x99", 0x30b8 Error: COMPILER_WARNING: [#def1137] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:933:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 933 | "\x00\x30\xb5\x00\x30\x99", 0x30b6 # | ^~~~~~~~~~~~~~~~~~~~ # 931| "\x00\x30\xb1\x00\x30\x99", 0x30b2 # 932| "\x00\x30\xb3\x00\x30\x99", 0x30b4 # 933|-> "\x00\x30\xb5\x00\x30\x99", 0x30b6 # 934| "\x00\x30\xb7\x00\x30\x99", 0x30b8 # 935| "\x00\x30\xb9\x00\x30\x99", 0x30ba Error: COMPILER_WARNING: [#def1138] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:934:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 934 | "\x00\x30\xb7\x00\x30\x99", 0x30b8 # | ^~~~~~~~~~~~~~~~~~~~ # 932| "\x00\x30\xb3\x00\x30\x99", 0x30b4 # 933| "\x00\x30\xb5\x00\x30\x99", 0x30b6 # 934|-> "\x00\x30\xb7\x00\x30\x99", 0x30b8 # 935| "\x00\x30\xb9\x00\x30\x99", 0x30ba # 936| "\x00\x30\xbb\x00\x30\x99", 0x30bc Error: COMPILER_WARNING: [#def1139] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:935:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 935 | "\x00\x30\xb9\x00\x30\x99", 0x30ba # | ^~~~~~~~~~~~~~~~~~~~ # 933| "\x00\x30\xb5\x00\x30\x99", 0x30b6 # 934| "\x00\x30\xb7\x00\x30\x99", 0x30b8 # 935|-> "\x00\x30\xb9\x00\x30\x99", 0x30ba # 936| "\x00\x30\xbb\x00\x30\x99", 0x30bc # 937| "\x00\x30\xbd\x00\x30\x99", 0x30be Error: COMPILER_WARNING: [#def1140] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:936:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 936 | "\x00\x30\xbb\x00\x30\x99", 0x30bc # | ^~~~~~~~~~~~~~~~~~~~ # 934| "\x00\x30\xb7\x00\x30\x99", 0x30b8 # 935| "\x00\x30\xb9\x00\x30\x99", 0x30ba # 936|-> "\x00\x30\xbb\x00\x30\x99", 0x30bc # 937| "\x00\x30\xbd\x00\x30\x99", 0x30be # 938| "\x00\x30\xbf\x00\x30\x99", 0x30c0 Error: COMPILER_WARNING: [#def1141] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:937:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 937 | "\x00\x30\xbd\x00\x30\x99", 0x30be # | ^~~~~~~~~~~~~~~~~~~~ # 935| "\x00\x30\xb9\x00\x30\x99", 0x30ba # 936| "\x00\x30\xbb\x00\x30\x99", 0x30bc # 937|-> "\x00\x30\xbd\x00\x30\x99", 0x30be # 938| "\x00\x30\xbf\x00\x30\x99", 0x30c0 # 939| "\x00\x30\xc1\x00\x30\x99", 0x30c2 Error: COMPILER_WARNING: [#def1142] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:938:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 938 | "\x00\x30\xbf\x00\x30\x99", 0x30c0 # | ^~~~~~~~~~~~~~~~~~~~ # 936| "\x00\x30\xbb\x00\x30\x99", 0x30bc # 937| "\x00\x30\xbd\x00\x30\x99", 0x30be # 938|-> "\x00\x30\xbf\x00\x30\x99", 0x30c0 # 939| "\x00\x30\xc1\x00\x30\x99", 0x30c2 # 940| "\x00\x30\xc4\x00\x30\x99", 0x30c5 Error: COMPILER_WARNING: [#def1143] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:939:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 939 | "\x00\x30\xc1\x00\x30\x99", 0x30c2 # | ^~~~~~~~~~~~~~~~~~~~ # 937| "\x00\x30\xbd\x00\x30\x99", 0x30be # 938| "\x00\x30\xbf\x00\x30\x99", 0x30c0 # 939|-> "\x00\x30\xc1\x00\x30\x99", 0x30c2 # 940| "\x00\x30\xc4\x00\x30\x99", 0x30c5 # 941| "\x00\x30\xc6\x00\x30\x99", 0x30c7 Error: COMPILER_WARNING: [#def1144] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:940:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 940 | "\x00\x30\xc4\x00\x30\x99", 0x30c5 # | ^~~~~~~~~~~~~~~~~~~~ # 938| "\x00\x30\xbf\x00\x30\x99", 0x30c0 # 939| "\x00\x30\xc1\x00\x30\x99", 0x30c2 # 940|-> "\x00\x30\xc4\x00\x30\x99", 0x30c5 # 941| "\x00\x30\xc6\x00\x30\x99", 0x30c7 # 942| "\x00\x30\xc8\x00\x30\x99", 0x30c9 Error: COMPILER_WARNING: [#def1145] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:941:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 941 | "\x00\x30\xc6\x00\x30\x99", 0x30c7 # | ^~~~~~~~~~~~~~~~~~~~ # 939| "\x00\x30\xc1\x00\x30\x99", 0x30c2 # 940| "\x00\x30\xc4\x00\x30\x99", 0x30c5 # 941|-> "\x00\x30\xc6\x00\x30\x99", 0x30c7 # 942| "\x00\x30\xc8\x00\x30\x99", 0x30c9 # 943| "\x00\x30\xcf\x00\x30\x99", 0x30d0 Error: COMPILER_WARNING: [#def1146] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:942:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 942 | "\x00\x30\xc8\x00\x30\x99", 0x30c9 # | ^~~~~~~~~~~~~~~~~~~~ # 940| "\x00\x30\xc4\x00\x30\x99", 0x30c5 # 941| "\x00\x30\xc6\x00\x30\x99", 0x30c7 # 942|-> "\x00\x30\xc8\x00\x30\x99", 0x30c9 # 943| "\x00\x30\xcf\x00\x30\x99", 0x30d0 # 944| "\x00\x30\xcf\x00\x30\x9a", 0x30d1 Error: COMPILER_WARNING: [#def1147] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:943:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 943 | "\x00\x30\xcf\x00\x30\x99", 0x30d0 # | ^~~~~~~~~~~~~~~~~~~~ # 941| "\x00\x30\xc6\x00\x30\x99", 0x30c7 # 942| "\x00\x30\xc8\x00\x30\x99", 0x30c9 # 943|-> "\x00\x30\xcf\x00\x30\x99", 0x30d0 # 944| "\x00\x30\xcf\x00\x30\x9a", 0x30d1 # 945| "\x00\x30\xd2\x00\x30\x99", 0x30d3 Error: COMPILER_WARNING: [#def1148] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:944:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 944 | "\x00\x30\xcf\x00\x30\x9a", 0x30d1 # | ^~~~~~~~~~~~~~~~~~~~ # 942| "\x00\x30\xc8\x00\x30\x99", 0x30c9 # 943| "\x00\x30\xcf\x00\x30\x99", 0x30d0 # 944|-> "\x00\x30\xcf\x00\x30\x9a", 0x30d1 # 945| "\x00\x30\xd2\x00\x30\x99", 0x30d3 # 946| "\x00\x30\xd2\x00\x30\x9a", 0x30d4 Error: COMPILER_WARNING: [#def1149] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:945:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 945 | "\x00\x30\xd2\x00\x30\x99", 0x30d3 # | ^~~~~~~~~~~~~~~~~~~~ # 943| "\x00\x30\xcf\x00\x30\x99", 0x30d0 # 944| "\x00\x30\xcf\x00\x30\x9a", 0x30d1 # 945|-> "\x00\x30\xd2\x00\x30\x99", 0x30d3 # 946| "\x00\x30\xd2\x00\x30\x9a", 0x30d4 # 947| "\x00\x30\xd5\x00\x30\x99", 0x30d6 Error: COMPILER_WARNING (CWE-909): [#def1150] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:947:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 947 | "\x00\x30\xd5\x00\x30\x99", 0x30d6 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 945| "\x00\x30\xd2\x00\x30\x99", 0x30d3 # 946| "\x00\x30\xd2\x00\x30\x9a", 0x30d4 # 947|-> "\x00\x30\xd5\x00\x30\x99", 0x30d6 # 948| "\x00\x30\xd5\x00\x30\x9a", 0x30d7 # 949| "\x00\x30\xd8\x00\x30\x99", 0x30d9 Error: COMPILER_WARNING: [#def1151] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:947:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 947 | "\x00\x30\xd5\x00\x30\x99", 0x30d6 # | ^~~~~~~~~~~~~~~~~~~~ # 945| "\x00\x30\xd2\x00\x30\x99", 0x30d3 # 946| "\x00\x30\xd2\x00\x30\x9a", 0x30d4 # 947|-> "\x00\x30\xd5\x00\x30\x99", 0x30d6 # 948| "\x00\x30\xd5\x00\x30\x9a", 0x30d7 # 949| "\x00\x30\xd8\x00\x30\x99", 0x30d9 Error: COMPILER_WARNING (CWE-909): [#def1152] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:948:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 948 | "\x00\x30\xd5\x00\x30\x9a", 0x30d7 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 946| "\x00\x30\xd2\x00\x30\x9a", 0x30d4 # 947| "\x00\x30\xd5\x00\x30\x99", 0x30d6 # 948|-> "\x00\x30\xd5\x00\x30\x9a", 0x30d7 # 949| "\x00\x30\xd8\x00\x30\x99", 0x30d9 # 950| "\x00\x30\xd8\x00\x30\x9a", 0x30da Error: COMPILER_WARNING: [#def1153] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:949:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 949 | "\x00\x30\xd8\x00\x30\x99", 0x30d9 # | ^~~~~~~~~~~~~~~~~~~~ # 947| "\x00\x30\xd5\x00\x30\x99", 0x30d6 # 948| "\x00\x30\xd5\x00\x30\x9a", 0x30d7 # 949|-> "\x00\x30\xd8\x00\x30\x99", 0x30d9 # 950| "\x00\x30\xd8\x00\x30\x9a", 0x30da # 951| "\x00\x30\xdb\x00\x30\x99", 0x30dc Error: COMPILER_WARNING: [#def1154] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:950:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 950 | "\x00\x30\xd8\x00\x30\x9a", 0x30da # | ^~~~~~~~~~~~~~~~~~~~ # 948| "\x00\x30\xd5\x00\x30\x9a", 0x30d7 # 949| "\x00\x30\xd8\x00\x30\x99", 0x30d9 # 950|-> "\x00\x30\xd8\x00\x30\x9a", 0x30da # 951| "\x00\x30\xdb\x00\x30\x99", 0x30dc # 952| "\x00\x30\xdb\x00\x30\x9a", 0x30dd Error: COMPILER_WARNING (CWE-909): [#def1155] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:951:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 951 | "\x00\x30\xdb\x00\x30\x99", 0x30dc # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 949| "\x00\x30\xd8\x00\x30\x99", 0x30d9 # 950| "\x00\x30\xd8\x00\x30\x9a", 0x30da # 951|-> "\x00\x30\xdb\x00\x30\x99", 0x30dc # 952| "\x00\x30\xdb\x00\x30\x9a", 0x30dd # 953| "\x00\x30\xa6\x00\x30\x99", 0x30f4 Error: COMPILER_WARNING: [#def1156] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:951:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 951 | "\x00\x30\xdb\x00\x30\x99", 0x30dc # | ^~~~~~~~~~~~~~~~~~~~ # 949| "\x00\x30\xd8\x00\x30\x99", 0x30d9 # 950| "\x00\x30\xd8\x00\x30\x9a", 0x30da # 951|-> "\x00\x30\xdb\x00\x30\x99", 0x30dc # 952| "\x00\x30\xdb\x00\x30\x9a", 0x30dd # 953| "\x00\x30\xa6\x00\x30\x99", 0x30f4 Error: COMPILER_WARNING: [#def1157] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:952:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 952 | "\x00\x30\xdb\x00\x30\x9a", 0x30dd # | ^~~~~~~~~~~~~~~~~~~~ # 950| "\x00\x30\xd8\x00\x30\x9a", 0x30da # 951| "\x00\x30\xdb\x00\x30\x99", 0x30dc # 952|-> "\x00\x30\xdb\x00\x30\x9a", 0x30dd # 953| "\x00\x30\xa6\x00\x30\x99", 0x30f4 # 954| "\x00\x30\xef\x00\x30\x99", 0x30f7 Error: COMPILER_WARNING: [#def1158] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:953:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 953 | "\x00\x30\xa6\x00\x30\x99", 0x30f4 # | ^~~~~~~~~~~~~~~~~~~~ # 951| "\x00\x30\xdb\x00\x30\x99", 0x30dc # 952| "\x00\x30\xdb\x00\x30\x9a", 0x30dd # 953|-> "\x00\x30\xa6\x00\x30\x99", 0x30f4 # 954| "\x00\x30\xef\x00\x30\x99", 0x30f7 # 955| "\x00\x30\xf0\x00\x30\x99", 0x30f8 Error: COMPILER_WARNING: [#def1159] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:954:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 954 | "\x00\x30\xef\x00\x30\x99", 0x30f7 # | ^~~~~~~~~~~~~~~~~~~~ # 952| "\x00\x30\xdb\x00\x30\x9a", 0x30dd # 953| "\x00\x30\xa6\x00\x30\x99", 0x30f4 # 954|-> "\x00\x30\xef\x00\x30\x99", 0x30f7 # 955| "\x00\x30\xf0\x00\x30\x99", 0x30f8 # 956| "\x00\x30\xf1\x00\x30\x99", 0x30f9 Error: COMPILER_WARNING: [#def1160] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:955:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 955 | "\x00\x30\xf0\x00\x30\x99", 0x30f8 # | ^~~~~~~~~~~~~~~~~~~~ # 953| "\x00\x30\xa6\x00\x30\x99", 0x30f4 # 954| "\x00\x30\xef\x00\x30\x99", 0x30f7 # 955|-> "\x00\x30\xf0\x00\x30\x99", 0x30f8 # 956| "\x00\x30\xf1\x00\x30\x99", 0x30f9 # 957| "\x00\x30\xf2\x00\x30\x99", 0x30fa Error: COMPILER_WARNING: [#def1161] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:956:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 956 | "\x00\x30\xf1\x00\x30\x99", 0x30f9 # | ^~~~~~~~~~~~~~~~~~~~ # 954| "\x00\x30\xef\x00\x30\x99", 0x30f7 # 955| "\x00\x30\xf0\x00\x30\x99", 0x30f8 # 956|-> "\x00\x30\xf1\x00\x30\x99", 0x30f9 # 957| "\x00\x30\xf2\x00\x30\x99", 0x30fa # 958| "\x00\x30\xfd\x00\x30\x99", 0x30fe Error: COMPILER_WARNING: [#def1162] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:957:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 957 | "\x00\x30\xf2\x00\x30\x99", 0x30fa # | ^~~~~~~~~~~~~~~~~~~~ # 955| "\x00\x30\xf0\x00\x30\x99", 0x30f8 # 956| "\x00\x30\xf1\x00\x30\x99", 0x30f9 # 957|-> "\x00\x30\xf2\x00\x30\x99", 0x30fa # 958| "\x00\x30\xfd\x00\x30\x99", 0x30fe # 959| "\x01\x05\xd2\x00\x03\x07", 0x105c9 Error: COMPILER_WARNING: [#def1163] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:958:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 958 | "\x00\x30\xfd\x00\x30\x99", 0x30fe # | ^~~~~~~~~~~~~~~~~~~~ # 956| "\x00\x30\xf1\x00\x30\x99", 0x30f9 # 957| "\x00\x30\xf2\x00\x30\x99", 0x30fa # 958|-> "\x00\x30\xfd\x00\x30\x99", 0x30fe # 959| "\x01\x05\xd2\x00\x03\x07", 0x105c9 # 960| "\x01\x05\xda\x00\x03\x07", 0x105e4 Error: COMPILER_WARNING: [#def1164] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:959:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 959 | "\x01\x05\xd2\x00\x03\x07", 0x105c9 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 957| "\x00\x30\xf2\x00\x30\x99", 0x30fa # 958| "\x00\x30\xfd\x00\x30\x99", 0x30fe # 959|-> "\x01\x05\xd2\x00\x03\x07", 0x105c9 # 960| "\x01\x05\xda\x00\x03\x07", 0x105e4 # 961| "\x01\x10\x99\x01\x10\xba", 0x1109a Error: COMPILER_WARNING: [#def1165] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:960:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 960 | "\x01\x05\xda\x00\x03\x07", 0x105e4 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 958| "\x00\x30\xfd\x00\x30\x99", 0x30fe # 959| "\x01\x05\xd2\x00\x03\x07", 0x105c9 # 960|-> "\x01\x05\xda\x00\x03\x07", 0x105e4 # 961| "\x01\x10\x99\x01\x10\xba", 0x1109a # 962| "\x01\x10\x9b\x01\x10\xba", 0x1109c Error: COMPILER_WARNING: [#def1166] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:962:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 962 | "\x01\x10\x9b\x01\x10\xba", 0x1109c # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 960| "\x01\x05\xda\x00\x03\x07", 0x105e4 # 961| "\x01\x10\x99\x01\x10\xba", 0x1109a # 962|-> "\x01\x10\x9b\x01\x10\xba", 0x1109c # 963| "\x01\x10\xa5\x01\x10\xba", 0x110ab # 964| "\x01\x11\x31\x01\x11\x27", 0x1112e Error: COMPILER_WARNING (CWE-909): [#def1167] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:964:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 964 | "\x01\x11\x31\x01\x11\x27", 0x1112e # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 962| "\x01\x10\x9b\x01\x10\xba", 0x1109c # 963| "\x01\x10\xa5\x01\x10\xba", 0x110ab # 964|-> "\x01\x11\x31\x01\x11\x27", 0x1112e # 965| "\x01\x11\x32\x01\x11\x27", 0x1112f # 966| "\x01\x13\x47\x01\x13\x3e", 0x1134b Error: COMPILER_WARNING: [#def1168] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:964:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 964 | "\x01\x11\x31\x01\x11\x27", 0x1112e # | ^~~~~~~~~~~~~~~~~~~~ # 962| "\x01\x10\x9b\x01\x10\xba", 0x1109c # 963| "\x01\x10\xa5\x01\x10\xba", 0x110ab # 964|-> "\x01\x11\x31\x01\x11\x27", 0x1112e # 965| "\x01\x11\x32\x01\x11\x27", 0x1112f # 966| "\x01\x13\x47\x01\x13\x3e", 0x1134b Error: COMPILER_WARNING: [#def1169] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:965:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 965 | "\x01\x11\x32\x01\x11\x27", 0x1112f # | ^~~~~~~~~~~~~~~~~~~~ # 963| "\x01\x10\xa5\x01\x10\xba", 0x110ab # 964| "\x01\x11\x31\x01\x11\x27", 0x1112e # 965|-> "\x01\x11\x32\x01\x11\x27", 0x1112f # 966| "\x01\x13\x47\x01\x13\x3e", 0x1134b # 967| "\x01\x13\x47\x01\x13\x57", 0x1134c Error: COMPILER_WARNING: [#def1170] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:966:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 966 | "\x01\x13\x47\x01\x13\x3e", 0x1134b # | ^~~~~~~~~~~~~~~~~~~~ # 964| "\x01\x11\x31\x01\x11\x27", 0x1112e # 965| "\x01\x11\x32\x01\x11\x27", 0x1112f # 966|-> "\x01\x13\x47\x01\x13\x3e", 0x1134b # 967| "\x01\x13\x47\x01\x13\x57", 0x1134c # 968| "\x01\x13\x82\x01\x13\xc9", 0x11383 Error: COMPILER_WARNING: [#def1171] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:967:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 967 | "\x01\x13\x47\x01\x13\x57", 0x1134c # | ^~~~~~~~~~~~~~~~~~~~ # 965| "\x01\x11\x32\x01\x11\x27", 0x1112f # 966| "\x01\x13\x47\x01\x13\x3e", 0x1134b # 967|-> "\x01\x13\x47\x01\x13\x57", 0x1134c # 968| "\x01\x13\x82\x01\x13\xc9", 0x11383 # 969| "\x01\x13\x84\x01\x13\xbb", 0x11385 Error: COMPILER_WARNING: [#def1172] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:968:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 968 | "\x01\x13\x82\x01\x13\xc9", 0x11383 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 966| "\x01\x13\x47\x01\x13\x3e", 0x1134b # 967| "\x01\x13\x47\x01\x13\x57", 0x1134c # 968|-> "\x01\x13\x82\x01\x13\xc9", 0x11383 # 969| "\x01\x13\x84\x01\x13\xbb", 0x11385 # 970| "\x01\x13\x8b\x01\x13\xc2", 0x1138e Error: COMPILER_WARNING: [#def1173] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:969:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 969 | "\x01\x13\x84\x01\x13\xbb", 0x11385 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 967| "\x01\x13\x47\x01\x13\x57", 0x1134c # 968| "\x01\x13\x82\x01\x13\xc9", 0x11383 # 969|-> "\x01\x13\x84\x01\x13\xbb", 0x11385 # 970| "\x01\x13\x8b\x01\x13\xc2", 0x1138e # 971| "\x01\x13\x90\x01\x13\xc9", 0x11391 Error: COMPILER_WARNING: [#def1174] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:970:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 970 | "\x01\x13\x8b\x01\x13\xc2", 0x1138e # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 968| "\x01\x13\x82\x01\x13\xc9", 0x11383 # 969| "\x01\x13\x84\x01\x13\xbb", 0x11385 # 970|-> "\x01\x13\x8b\x01\x13\xc2", 0x1138e # 971| "\x01\x13\x90\x01\x13\xc9", 0x11391 # 972| "\x01\x13\xc2\x01\x13\xc2", 0x113c5 Error: COMPILER_WARNING: [#def1175] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:971:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 971 | "\x01\x13\x90\x01\x13\xc9", 0x11391 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 969| "\x01\x13\x84\x01\x13\xbb", 0x11385 # 970| "\x01\x13\x8b\x01\x13\xc2", 0x1138e # 971|-> "\x01\x13\x90\x01\x13\xc9", 0x11391 # 972| "\x01\x13\xc2\x01\x13\xc2", 0x113c5 # 973| "\x01\x13\xc2\x01\x13\xb8", 0x113c7 Error: COMPILER_WARNING: [#def1176] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:972:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 972 | "\x01\x13\xc2\x01\x13\xc2", 0x113c5 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 970| "\x01\x13\x8b\x01\x13\xc2", 0x1138e # 971| "\x01\x13\x90\x01\x13\xc9", 0x11391 # 972|-> "\x01\x13\xc2\x01\x13\xc2", 0x113c5 # 973| "\x01\x13\xc2\x01\x13\xb8", 0x113c7 # 974| "\x01\x13\xc2\x01\x13\xc9", 0x113c8 Error: COMPILER_WARNING: [#def1177] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:973:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 973 | "\x01\x13\xc2\x01\x13\xb8", 0x113c7 # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 971| "\x01\x13\x90\x01\x13\xc9", 0x11391 # 972| "\x01\x13\xc2\x01\x13\xc2", 0x113c5 # 973|-> "\x01\x13\xc2\x01\x13\xb8", 0x113c7 # 974| "\x01\x13\xc2\x01\x13\xc9", 0x113c8 # 975| "\x01\x14\xb9\x01\x14\xba", 0x114bb Error: COMPILER_WARNING (CWE-909): [#def1178] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:975:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 975 | "\x01\x14\xb9\x01\x14\xba", 0x114bb # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 973| "\x01\x13\xc2\x01\x13\xb8", 0x113c7 # 974| "\x01\x13\xc2\x01\x13\xc9", 0x113c8 # 975|-> "\x01\x14\xb9\x01\x14\xba", 0x114bb # 976| "\x01\x14\xb9\x01\x14\xb0", 0x114bc # 977| "\x01\x14\xb9\x01\x14\xbd", 0x114be Error: COMPILER_WARNING: [#def1179] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:975:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 975 | "\x01\x14\xb9\x01\x14\xba", 0x114bb # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 973| "\x01\x13\xc2\x01\x13\xb8", 0x113c7 # 974| "\x01\x13\xc2\x01\x13\xc9", 0x113c8 # 975|-> "\x01\x14\xb9\x01\x14\xba", 0x114bb # 976| "\x01\x14\xb9\x01\x14\xb0", 0x114bc # 977| "\x01\x14\xb9\x01\x14\xbd", 0x114be Error: COMPILER_WARNING (CWE-909): [#def1180] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:977:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 977 | "\x01\x14\xb9\x01\x14\xbd", 0x114be # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 975| "\x01\x14\xb9\x01\x14\xba", 0x114bb # 976| "\x01\x14\xb9\x01\x14\xb0", 0x114bc # 977|-> "\x01\x14\xb9\x01\x14\xbd", 0x114be # 978| "\x01\x15\xb8\x01\x15\xaf", 0x115ba # 979| "\x01\x15\xb9\x01\x15\xaf", 0x115bb Error: COMPILER_WARNING: [#def1181] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:977:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 977 | "\x01\x14\xb9\x01\x14\xbd", 0x114be # | ^~~~~~~~~~~~~~~~~~~~~~~~~~ # 975| "\x01\x14\xb9\x01\x14\xba", 0x114bb # 976| "\x01\x14\xb9\x01\x14\xb0", 0x114bc # 977|-> "\x01\x14\xb9\x01\x14\xbd", 0x114be # 978| "\x01\x15\xb8\x01\x15\xaf", 0x115ba # 979| "\x01\x15\xb9\x01\x15\xaf", 0x115bb Error: COMPILER_WARNING (CWE-909): [#def1182] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:981:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 981 | "\x01\x61\x1e\x01\x61\x1e", 0x16121 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 979| "\x01\x15\xb9\x01\x15\xaf", 0x115bb # 980| "\x01\x19\x35\x01\x19\x30", 0x11938 # 981|-> "\x01\x61\x1e\x01\x61\x1e", 0x16121 # 982| "\x01\x61\x1e\x01\x61\x29", 0x16122 # 983| "\x01\x61\x1e\x01\x61\x1f", 0x16123 Error: COMPILER_WARNING: [#def1183] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:981:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 981 | "\x01\x61\x1e\x01\x61\x1e", 0x16121 # | ^~~~~~~~~~~~~~~~~~~~ # 979| "\x01\x15\xb9\x01\x15\xaf", 0x115bb # 980| "\x01\x19\x35\x01\x19\x30", 0x11938 # 981|-> "\x01\x61\x1e\x01\x61\x1e", 0x16121 # 982| "\x01\x61\x1e\x01\x61\x29", 0x16122 # 983| "\x01\x61\x1e\x01\x61\x1f", 0x16123 Error: COMPILER_WARNING: [#def1184] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:982:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 982 | "\x01\x61\x1e\x01\x61\x29", 0x16122 # | ^~~~~~~~~~~~~~~~~ # 980| "\x01\x19\x35\x01\x19\x30", 0x11938 # 981| "\x01\x61\x1e\x01\x61\x1e", 0x16121 # 982|-> "\x01\x61\x1e\x01\x61\x29", 0x16122 # 983| "\x01\x61\x1e\x01\x61\x1f", 0x16123 # 984| "\x01\x61\x29\x01\x61\x1f", 0x16124 Error: COMPILER_WARNING: [#def1185] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:983:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 983 | "\x01\x61\x1e\x01\x61\x1f", 0x16123 # | ^~~~~~~~~~~~~~~~~~~~ # 981| "\x01\x61\x1e\x01\x61\x1e", 0x16121 # 982| "\x01\x61\x1e\x01\x61\x29", 0x16122 # 983|-> "\x01\x61\x1e\x01\x61\x1f", 0x16123 # 984| "\x01\x61\x29\x01\x61\x1f", 0x16124 # 985| "\x01\x61\x1e\x01\x61\x20", 0x16125 Error: COMPILER_WARNING: [#def1186] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:984:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 984 | "\x01\x61\x29\x01\x61\x1f", 0x16124 # | ^~~~~~~~~~~~~~~~~ # 982| "\x01\x61\x1e\x01\x61\x29", 0x16122 # 983| "\x01\x61\x1e\x01\x61\x1f", 0x16123 # 984|-> "\x01\x61\x29\x01\x61\x1f", 0x16124 # 985| "\x01\x61\x1e\x01\x61\x20", 0x16125 # 986| "\x01\x61\x21\x01\x61\x1f", 0x16126 Error: COMPILER_WARNING: [#def1187] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:985:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 985 | "\x01\x61\x1e\x01\x61\x20", 0x16125 # | ^~~~~~~~~~~~~~~~~ # 983| "\x01\x61\x1e\x01\x61\x1f", 0x16123 # 984| "\x01\x61\x29\x01\x61\x1f", 0x16124 # 985|-> "\x01\x61\x1e\x01\x61\x20", 0x16125 # 986| "\x01\x61\x21\x01\x61\x1f", 0x16126 # 987| "\x01\x61\x22\x01\x61\x1f", 0x16127 Error: COMPILER_WARNING (CWE-909): [#def1188] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:987:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 987 | "\x01\x61\x22\x01\x61\x1f", 0x16127 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 985| "\x01\x61\x1e\x01\x61\x20", 0x16125 # 986| "\x01\x61\x21\x01\x61\x1f", 0x16126 # 987|-> "\x01\x61\x22\x01\x61\x1f", 0x16127 # 988| "\x01\x61\x21\x01\x61\x20", 0x16128 # 989| "\x01\x6d\x67\x01\x6d\x67", 0x16d68 Error: COMPILER_WARNING: [#def1189] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:987:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 987 | "\x01\x61\x22\x01\x61\x1f", 0x16127 # | ^~~~~~~~~~~~~~~~~~ # 985| "\x01\x61\x1e\x01\x61\x20", 0x16125 # 986| "\x01\x61\x21\x01\x61\x1f", 0x16126 # 987|-> "\x01\x61\x22\x01\x61\x1f", 0x16127 # 988| "\x01\x61\x21\x01\x61\x20", 0x16128 # 989| "\x01\x6d\x67\x01\x6d\x67", 0x16d68 Error: COMPILER_WARNING (CWE-909): [#def1190] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:988:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 988 | "\x01\x61\x21\x01\x61\x20", 0x16128 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 986| "\x01\x61\x21\x01\x61\x1f", 0x16126 # 987| "\x01\x61\x22\x01\x61\x1f", 0x16127 # 988|-> "\x01\x61\x21\x01\x61\x20", 0x16128 # 989| "\x01\x6d\x67\x01\x6d\x67", 0x16d68 # 990| "\x01\x6d\x63\x01\x6d\x67", 0x16d69 Error: COMPILER_WARNING (CWE-909): [#def1191] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:989:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 989 | "\x01\x6d\x67\x01\x6d\x67", 0x16d68 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 987| "\x01\x61\x22\x01\x61\x1f", 0x16127 # 988| "\x01\x61\x21\x01\x61\x20", 0x16128 # 989|-> "\x01\x6d\x67\x01\x6d\x67", 0x16d68 # 990| "\x01\x6d\x63\x01\x6d\x67", 0x16d69 # 991| "\x01\x6d\x69\x01\x6d\x67", 0x16d6a Error: COMPILER_WARNING (CWE-909): [#def1192] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:990:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 990 | "\x01\x6d\x63\x01\x6d\x67", 0x16d69 # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 988| "\x01\x61\x21\x01\x61\x20", 0x16128 # 989| "\x01\x6d\x67\x01\x6d\x67", 0x16d68 # 990|-> "\x01\x6d\x63\x01\x6d\x67", 0x16d69 # 991| "\x01\x6d\x69\x01\x6d\x67", 0x16d6a Error: COMPILER_WARNING (CWE-909): [#def1193] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:991:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 991 | "\x01\x6d\x69\x01\x6d\x67", 0x16d6a # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 989| "\x01\x6d\x67\x01\x6d\x67", 0x16d68 # 990| "\x01\x6d\x63\x01\x6d\x67", 0x16d69 # 991|-> "\x01\x6d\x69\x01\x6d\x67", 0x16d6a Error: COMPILER_WARNING: [#def1194] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:991:8: warning[-Wunterminated-string-initialization]: initializer-string for array of 'char' truncates NUL terminator but destination lacks 'nonstring' attribute (7 chars into 6 available) # 991 | "\x01\x6d\x69\x01\x6d\x67", 0x16d6a # | ^~~~~~~~~~~~~~ # 989| "\x01\x6d\x67\x01\x6d\x67", 0x16d68 # 990| "\x01\x6d\x63\x01\x6d\x67", 0x16d69 # 991|-> "\x01\x6d\x69\x01\x6d\x67", 0x16d6a Error: COMPILER_WARNING (CWE-909): [#def1195] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:992:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 990| "\x01\x6d\x63\x01\x6d\x67", 0x16d69 # 991| "\x01\x6d\x69\x01\x6d\x67", 0x16d6a Error: COMPILER_WARNING (CWE-909): [#def1196] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:993:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 991| "\x01\x6d\x69\x01\x6d\x67", 0x16d6a Error: COMPILER_WARNING (CWE-909): [#def1197] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:994:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ Error: COMPILER_WARNING (CWE-909): [#def1198] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:995:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ Error: COMPILER_WARNING (CWE-909): [#def1199] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:996:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ Error: COMPILER_WARNING (CWE-909): [#def1200] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:997:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ Error: COMPILER_WARNING (CWE-909): [#def1201] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:998:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ Error: COMPILER_WARNING (CWE-909): [#def1202] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.gperf:999:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ Error: COMPILER_WARNING (CWE-909): [#def1203] gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:27: included_from: Included from here. gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.h: scope_hint: In function 'gl_uninorm_compose_lookup' gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition-table.h:169:7: warning[-Wmissing-field-initializers]: missing initializer for field 'combined' of 'const struct composition_rule' # 169 | {""}, # | ^ gettext-0.24/gettext-tools/gnulib-lib/uninorm/composition.c:25:55: note: 'combined' declared here # 25 | struct composition_rule { char codes[6]; unsigned int combined; }; # | ^~~~~~~~ # 167| static const struct composition_rule wordlist[] = # 168| { # 169|-> {""}, # 170| #line 572 "uninorm/composition-table.gperf" # 171| {"\000\001\002\000\003\001", 0x1eae}, Error: CPPCHECK_WARNING (CWE-476): [#def1204] gettext-0.24/gettext-tools/gnulib-lib/wait-process.c:200: warning[nullPointerOutOfMemory]: If memory allocation fails, then there is a possible null pointer dereference: new_slaves # 198| xalloc_die (); # 199| } # 200|-> memcpy (new_slaves, old_slaves, # 201| slaves_allocated * sizeof (slaves_entry_t)); # 202| slaves = new_slaves; Error: CPPCHECK_WARNING (CWE-476): [#def1205] gettext-0.24/gettext-tools/gnulib-lib/wait-process.c:212: warning[nullPointerOutOfMemory]: If memory allocation fails, then there is a possible null pointer dereference: slaves # 210| new slave and its 'used' bit have been written to the memory locations # 211| that make up slaves[slaves_count]. */ # 212|-> slaves[slaves_count].child = child; # 213| slaves[slaves_count].used = 1; # 214| slaves_count++; Error: CPPCHECK_WARNING (CWE-476): [#def1206] gettext-0.24/gettext-tools/gnulib-lib/wait-process.c:213: warning[nullPointerOutOfMemory]: If memory allocation fails, then there is a possible null pointer dereference: slaves # 211| that make up slaves[slaves_count]. */ # 212| slaves[slaves_count].child = child; # 213|-> slaves[slaves_count].used = 1; # 214| slaves_count++; # 215| } Error: CPPCHECK_WARNING (CWE-457): [#def1207] gettext-0.24/gettext-tools/gnulib-tests/file-has-acl.c:413: error[uninitvar]: Uninitialized variable: buf # 411| # 412| int ret = ((flags & ACL_SYMLINK_FOLLOW ? getxattr : lgetxattr) # 413|-> (name, XATTR_NAME_NFSV4_ACL, buf, sizeof buf)); # 414| if (ret < 0) # 415| switch (errno) Error: CPPCHECK_WARNING (CWE-457): [#def1208] gettext-0.24/gettext-tools/libgettextpo/gl_anylinked_list2.h:952: error[uninitvar]: Uninitialized variables: result.count, result.i, result.j # 950| #endif # 951| # 952|-> return result; # 953| } # 954| Error: CPPCHECK_WARNING (CWE-457): [#def1209] gettext-0.24/gettext-tools/libgettextpo/gl_anylinked_list2.h:1023: warning[uninitvar]: Uninitialized variables: result.count, result.i, result.j # 1021| #endif # 1022| # 1023|-> return result; # 1024| } # 1025| Error: GCC_ANALYZER_WARNING (CWE-127): [#def1210] gettext-0.24/gettext-tools/libgettextpo/plural.y:160:20: warning[-Wanalyzer-out-of-bounds]: stack-based buffer under-read gettext-0.24/gettext-tools/libgettextpo/../src/../../gettext-runtime/intl/plural-exp.c:59:1: enter_function: entry to ‘extract_plural_expression’ gettext-0.24/gettext-tools/libgettextpo/../src/../../gettext-runtime/intl/plural-exp.c:63:6: branch_true: following ‘true’ branch (when ‘nullentry’ is non-NULL)... gettext-0.24/gettext-tools/libgettextpo/../src/../../gettext-runtime/intl/plural-exp.c:68:16: branch_true: ...to here gettext-0.24/gettext-tools/libgettextpo/../src/../../gettext-runtime/intl/plural-exp.c:70:10: branch_false: following ‘false’ branch... gettext-0.24/gettext-tools/libgettextpo/../src/../../gettext-runtime/intl/plural-exp.c:79:11: branch_false: ...to here gettext-0.24/gettext-tools/libgettextpo/../src/../../gettext-runtime/intl/plural-exp.c:80:18: branch_true: following ‘true’ branch... gettext-0.24/gettext-tools/libgettextpo/../src/../../gettext-runtime/intl/plural-exp.c:80:39: branch_true: ...to here gettext-0.24/gettext-tools/libgettextpo/../src/../../gettext-runtime/intl/plural-exp.c:82:14: branch_false: following ‘false’ branch... gettext-0.24/gettext-tools/libgettextpo/../src/../../gettext-runtime/intl/plural-exp.c:84:15: branch_false: ...to here gettext-0.24/gettext-tools/libgettextpo/../src/../../gettext-runtime/intl/plural-exp.c:85:14: branch_false: following ‘false’ branch... gettext-0.24/gettext-tools/libgettextpo/../src/../../gettext-runtime/intl/plural-exp.c:87:11: branch_false: ...to here gettext-0.24/gettext-tools/libgettextpo/../src/../../gettext-runtime/intl/plural-exp.c:95:15: call_function: calling ‘parse_plural_expression’ from ‘extract_plural_expression’ Error: CPPCHECK_WARNING (CWE-476): [#def1211] gettext-0.24/gettext-tools/libgrep/m-fgrep.c:124: warning[nullPointerOutOfMemory]: If memory allocation fails, then there is a possible null pointer dereference: mb_properties # 122| # 123| memset (&cur_state, 0, sizeof (mbstate_t)); # 124|-> memset (mb_properties, 0, sizeof (char) * buf_size); # 125| for (i = 0; i < buf_size ;) # 126| { Error: CPPCHECK_WARNING (CWE-476): [#def1212] gettext-0.24/gettext-tools/libgrep/m-fgrep.c:136: warning[nullPointerOutOfMemory]: If memory allocation fails, then there is a possible null pointer dereference: mb_properties # 134| mbclen = 1; # 135| } # 136|-> mb_properties[i] = mbclen; # 137| i += mbclen; # 138| } Error: COMPILER_WARNING: [#def1213] gettext-0.24/gettext-tools/src/../gnulib-lib/xalloc.h:59:7: note[note]: in a call to allocation function ‘xmalloc’ declared here # 57| #if GNULIB_XALLOC # 58| # 59|-> void *xmalloc (size_t s) # 60| _GL_ATTRIBUTE_MALLOC _GL_ATTRIBUTE_DEALLOC_FREE # 61| _GL_ATTRIBUTE_ALLOC_SIZE ((1)) _GL_ATTRIBUTE_RETURNS_NONNULL; Error: GCC_ANALYZER_WARNING (CWE-688): [#def1214] gettext-0.24/gettext-tools/src/../tree-sitter-0.23.2/lib/src/./subtree.c:1043:3: warning[-Wanalyzer-possible-null-argument]: use of possibly-NULL ‘f’ where non-null expected gettext-0.24/gettext-tools/src/../tree-sitter-0.23.2/lib/src/./tree.c:159:6: enter_function: entry to ‘ts_tree_print_dot_graph’ gettext-0.24/gettext-tools/src/../tree-sitter-0.23.2/lib/src/./tree.c:160:16: acquire_memory: this call could return NULL gettext-0.24/gettext-tools/src/../tree-sitter-0.23.2/lib/src/./tree.c:161:3: call_function: calling ‘ts_subtree_print_dot_graph’ from ‘ts_tree_print_dot_graph’ #argument 4 of ‘__builtin_fwrite’ must be non-null # 1041| # 1042| void ts_subtree_print_dot_graph(Subtree self, const TSLanguage *language, FILE *f) { # 1043|-> fprintf(f, "digraph tree {\n"); # 1044| fprintf(f, "edge [arrowhead=none]\n"); # 1045| ts_subtree__print_dot_graph(&self, 0, language, 0, f); Error: GCC_ANALYZER_WARNING (CWE-127): [#def1215] gettext-0.24/gettext-tools/src/cldr-plural.y:183:46: warning[-Wanalyzer-out-of-bounds]: stack-based buffer under-read gettext-0.24/gettext-tools/src/cldr-plural.y:488:1: enter_function: entry to ‘cldr_plural_parse’ gettext-0.24/gettext-tools/src/cldr-plural.y:498:7: call_function: calling ‘yyparse’ from ‘cldr_plural_parse’ # 181| rule: KEYWORD ':' condition samples # 182| { # 183|-> struct cldr_plural_rule_ty *rule = new_rule ($1, $3); # 184| struct cldr_plural_rule_list_ty *result = arg->result; # 185| if (result->nitems == result->nitems_max) Error: GCC_ANALYZER_WARNING (CWE-127): [#def1216] gettext-0.24/gettext-tools/src/cldr-plural.y:203:26: warning[-Wanalyzer-out-of-bounds]: stack-based buffer under-read gettext-0.24/gettext-tools/src/cldr-plural.y:488:1: enter_function: entry to ‘cldr_plural_parse’ gettext-0.24/gettext-tools/src/cldr-plural.y:498:7: call_function: calling ‘yyparse’ from ‘cldr_plural_parse’ # 201| | condition OR and_condition # 202| { # 203|-> $$ = new_branch_condition (CLDR_PLURAL_CONDITION_OR, $1, $3); # 204| } # 205| ; Error: GCC_ANALYZER_WARNING (CWE-127): [#def1217] gettext-0.24/gettext-tools/src/cldr-plural.y:213:26: warning[-Wanalyzer-out-of-bounds]: stack-based buffer under-read gettext-0.24/gettext-tools/src/cldr-plural.y:488:1: enter_function: entry to ‘cldr_plural_parse’ gettext-0.24/gettext-tools/src/cldr-plural.y:498:7: call_function: calling ‘yyparse’ from ‘cldr_plural_parse’ # 211| | and_condition AND relation # 212| { # 213|-> $$ = new_branch_condition (CLDR_PLURAL_CONDITION_AND, # 214| $1, # 215| new_leaf_condition ($3)); Error: GCC_ANALYZER_WARNING (CWE-127): [#def1218] gettext-0.24/gettext-tools/src/cldr-plural.y:221:26: warning[-Wanalyzer-out-of-bounds]: stack-based buffer under-read gettext-0.24/gettext-tools/src/cldr-plural.y:488:1: enter_function: entry to ‘cldr_plural_parse’ gettext-0.24/gettext-tools/src/cldr-plural.y:498:7: call_function: calling ‘yyparse’ from ‘cldr_plural_parse’ # 219| relation: expression '=' range_list # 220| { # 221|-> $$ = new_relation ($1, CLDR_PLURAL_RELATION_EQUAL, $3); # 222| } # 223| | expression '!' range_list Error: GCC_ANALYZER_WARNING (CWE-127): [#def1219] gettext-0.24/gettext-tools/src/cldr-plural.y:225:26: warning[-Wanalyzer-out-of-bounds]: stack-based buffer under-read gettext-0.24/gettext-tools/src/cldr-plural.y:488:1: enter_function: entry to ‘cldr_plural_parse’ gettext-0.24/gettext-tools/src/cldr-plural.y:498:7: call_function: calling ‘yyparse’ from ‘cldr_plural_parse’ # 223| | expression '!' range_list # 224| { # 225|-> $$ = new_relation ($1, CLDR_PLURAL_RELATION_NOT_EQUAL, $3); # 226| } # 227| ; Error: GCC_ANALYZER_WARNING (CWE-127): [#def1220] gettext-0.24/gettext-tools/src/cldr-plural.y:235:26: warning[-Wanalyzer-out-of-bounds]: stack-based buffer under-read gettext-0.24/gettext-tools/src/cldr-plural.y:488:1: enter_function: entry to ‘cldr_plural_parse’ gettext-0.24/gettext-tools/src/cldr-plural.y:498:7: call_function: calling ‘yyparse’ from ‘cldr_plural_parse’ # 233| | OPERAND '%' INTEGER # 234| { # 235|-> $$ = new_expression ($1, $3->value.ival); # 236| } # 237| ; Error: GCC_ANALYZER_WARNING (CWE-127): [#def1221] gettext-0.24/gettext-tools/src/cldr-plural.y:248:26: warning[-Wanalyzer-out-of-bounds]: stack-based buffer under-read gettext-0.24/gettext-tools/src/cldr-plural.y:488:1: enter_function: entry to ‘cldr_plural_parse’ gettext-0.24/gettext-tools/src/cldr-plural.y:498:7: call_function: calling ‘yyparse’ from ‘cldr_plural_parse’ # 246| | range_list ',' range_or_integer # 247| { # 248|-> $$ = add_range ($1, $3); # 249| } # 250| ; Error: GCC_ANALYZER_WARNING (CWE-127): [#def1222] gettext-0.24/gettext-tools/src/cldr-plural.y:264:26: warning[-Wanalyzer-out-of-bounds]: stack-based buffer under-read gettext-0.24/gettext-tools/src/cldr-plural.y:488:1: enter_function: entry to ‘cldr_plural_parse’ gettext-0.24/gettext-tools/src/cldr-plural.y:498:7: call_function: calling ‘yyparse’ from ‘cldr_plural_parse’ # 262| range: INTEGER RANGE INTEGER # 263| { # 264|-> $$ = new_range ($1, $3); # 265| } # 266| ; Error: GCC_ANALYZER_WARNING (CWE-127): [#def1223] gettext-0.24/gettext-tools/src/cldr-plural.y:292:17: warning[-Wanalyzer-out-of-bounds]: stack-based buffer under-read gettext-0.24/gettext-tools/src/cldr-plural.y:488:1: enter_function: entry to ‘cldr_plural_parse’ gettext-0.24/gettext-tools/src/cldr-plural.y:498:7: call_function: calling ‘yyparse’ from ‘cldr_plural_parse’ # 290| { free ($1); } # 291| | DECIMAL '~' DECIMAL # 292|-> { free ($1); free ($3); } # 293| | INTEGER # 294| { free ($1); } Error: GCC_ANALYZER_WARNING (CWE-127): [#def1224] gettext-0.24/gettext-tools/src/cldr-plural.y:296:17: warning[-Wanalyzer-out-of-bounds]: stack-based buffer under-read gettext-0.24/gettext-tools/src/cldr-plural.y:488:1: enter_function: entry to ‘cldr_plural_parse’ gettext-0.24/gettext-tools/src/cldr-plural.y:498:7: call_function: calling ‘yyparse’ from ‘cldr_plural_parse’ # 294| { free ($1); } # 295| | INTEGER '~' INTEGER # 296|-> { free ($1); free ($3); } # 297| ; # 298| Error: CPPCHECK_WARNING (CWE-476): [#def1225] gettext-0.24/gettext-tools/src/cldr-plurals.c:305: warning[nullPointerOutOfResources]: If resource allocation fails, then there is a possible null pointer dereference: fp # 303| extracted_rules = extract_rules (fp, logical_filename, logical_filename, # 304| locale); # 305|-> fclose (fp); # 306| if (extracted_rules == NULL) # 307| error (1, 0, _("cannot extract rules for %s"), locale); Error: GCC_ANALYZER_WARNING (CWE-775): [#def1226] gettext-0.24/gettext-tools/src/file-list.c:90:10: warning[-Wanalyzer-file-leak]: leak of FILE 'fp' gettext-0.24/gettext-tools/src/file-list.c:46:6: branch_false: following 'false' branch (when the strings are non-equal)... gettext-0.24/gettext-tools/src/file-list.c:50:12: branch_false: ...to here gettext-0.24/gettext-tools/src/file-list.c:50:12: acquire_resource: opened here gettext-0.24/gettext-tools/src/file-list.c:51:10: branch_false: following 'false' branch... gettext-0.24/gettext-tools/src/file-list.c:56:12: branch_false: ...to here gettext-0.24/gettext-tools/src/file-list.c:58:10: branch_false: following 'false' branch... gettext-0.24/gettext-tools/src/file-list.c:83:7: branch_false: ...to here gettext-0.24/gettext-tools/src/file-list.c:83:6: branch_false: following 'false' branch... gettext-0.24/gettext-tools/src/file-list.c:87:7: branch_false: ...to here gettext-0.24/gettext-tools/src/file-list.c:87:6: branch_false: following 'false' branch... gettext-0.24/gettext-tools/src/file-list.c:90:10: branch_false: ...to here gettext-0.24/gettext-tools/src/file-list.c:90:10: danger: 'fp' leaks here; was opened at [(3)](sarif:/runs/0/results/0/codeFlows/0/threadFlows/0/locations/2) # 88| fclose (fp); # 89| # 90|-> return result; # 91| } Error: CPPCHECK_WARNING (CWE-476): [#def1227] gettext-0.24/gettext-tools/src/msggrep.c:245: warning[nullPointerOutOfResources]: If resource allocation fails, then there is a possible null pointer dereference: fp # 243| _("error while opening \"%s\" for reading"), optarg); # 244| # 245|-> while (!feof (fp)) # 246| { # 247| char buf[4096]; Error: GCC_ANALYZER_WARNING (CWE-835): [#def1228] gettext-0.24/gettext-tools/src/msginit.c:1747:18: warning[-Wanalyzer-infinite-loop]: infinite loop gettext-0.24/gettext-tools/src/msginit.c:1780:1: enter_function: entry to ‘subst_string_list’ # 1745| for (i = 0;;) # 1746| { # 1747|-> if (str[i] == '\0') # 1748| break; # 1749| for (j = 0; j < nsubst; j++) Error: GCC_ANALYZER_WARNING (CWE-127): [#def1229] gettext-0.24/gettext-tools/src/plural.y:160:20: warning[-Wanalyzer-out-of-bounds]: stack-based buffer under-read gettext-0.24/gettext-tools/src/../../gettext-runtime/intl/plural-exp.c:59:1: enter_function: entry to 'extract_plural_expression' gettext-0.24/gettext-tools/src/../../gettext-runtime/intl/plural-exp.c:63:6: branch_true: following 'true' branch (when 'nullentry' is non-NULL)... gettext-0.24/gettext-tools/src/../../gettext-runtime/intl/plural-exp.c:68:16: branch_true: ...to here gettext-0.24/gettext-tools/src/../../gettext-runtime/intl/plural-exp.c:70:10: branch_false: following 'false' branch... gettext-0.24/gettext-tools/src/../../gettext-runtime/intl/plural-exp.c:79:11: branch_false: ...to here gettext-0.24/gettext-tools/src/../../gettext-runtime/intl/plural-exp.c:80:18: branch_true: following 'true' branch... gettext-0.24/gettext-tools/src/../../gettext-runtime/intl/plural-exp.c:80:39: branch_true: ...to here gettext-0.24/gettext-tools/src/../../gettext-runtime/intl/plural-exp.c:82:14: branch_false: following 'false' branch... gettext-0.24/gettext-tools/src/../../gettext-runtime/intl/plural-exp.c:84:15: branch_false: ...to here gettext-0.24/gettext-tools/src/../../gettext-runtime/intl/plural-exp.c:85:14: branch_false: following 'false' branch... gettext-0.24/gettext-tools/src/../../gettext-runtime/intl/plural-exp.c:87:11: branch_false: ...to here gettext-0.24/gettext-tools/src/../../gettext-runtime/intl/plural-exp.c:95:15: call_function: calling 'parse_plural_expression' from 'extract_plural_expression' Error: CPPCHECK_WARNING (CWE-476): [#def1230] gettext-0.24/gettext-tools/src/read-mo.c:74: warning[nullPointerOutOfResources]: If resource allocation fails, then there is a possible null pointer dereference: fp # 72| size_t count; # 73| # 74|-> while (!feof (fp)) # 75| { # 76| const size_t increment = 4096; Error: GCC_ANALYZER_WARNING (CWE-775): [#def1231] gettext-0.24/gettext-tools/src/urlget.c:226:14: warning[-Wanalyzer-fd-leak]: leak of file descriptor ‘open(src_filename, 0)’ gettext-0.24/gettext-tools/src/urlget.c:215:12: acquire_resource: opened here gettext-0.24/gettext-tools/src/urlget.c:216:6: branch_false: following ‘false’ branch... branch_false: ...to here gettext-0.24/gettext-tools/src/urlget.c:223:10: branch_true: following ‘true’ branch... gettext-0.24/gettext-tools/src/urlget.c:226:15: branch_true: ...to here gettext-0.24/gettext-tools/src/urlget.c:226:14: danger: ‘open(src_filename, 0)’ leaks here; was opened at [(1)](sarif:/runs/0/results/0/codeFlows/0/threadFlows/0/locations/0) # 224| { # 225| #ifdef EINTR # 226|-> if (errno == EINTR) # 227| continue; # 228| #endif Error: GCC_ANALYZER_WARNING (CWE-775): [#def1232] gettext-0.24/gettext-tools/src/urlget.c:234:10: warning[-Wanalyzer-fd-leak]: leak of file descriptor ‘open(src_filename, 0)’ gettext-0.24/gettext-tools/src/urlget.c:215:12: acquire_resource: opened here gettext-0.24/gettext-tools/src/urlget.c:216:6: branch_false: following ‘false’ branch... branch_false: ...to here gettext-0.24/gettext-tools/src/urlget.c:231:10: branch_false: following ‘false’ branch... gettext-0.24/gettext-tools/src/urlget.c:234:11: branch_false: ...to here gettext-0.24/gettext-tools/src/urlget.c:234:10: danger: ‘open(src_filename, 0)’ leaks here; was opened at [(1)](sarif:/runs/0/results/1/codeFlows/0/threadFlows/0/locations/0) # 232| break; # 233| # 234|-> if (full_write (STDOUT_FILENO, buf, n_read) < n_read) # 235| error (EXIT_FAILURE, errno, _("error writing stdout")); # 236| } Error: COMPILER_WARNING: [#def1233] gettext-0.24/gettext-tools/src/write-mo.c: scope_hint: In function 'write_table' gettext-0.24/gettext-tools/src/write-mo.c:504:19: warning[-Walloc-size-larger-than=]: argument 1 value '18446744073709551615' exceeds maximum object size 9223372036854775807 # 504 | xmalloc (xsum (sizeof (struct pre_sysdep_string), # | ^ gettext-0.24/gettext-tools/gnulib-lib/xalloc.h:59:7: note: in a call to allocation function 'xmalloc' declared here # 59 | void *xmalloc (size_t s) # | ^ # 502| struct pre_sysdep_string *pre = # 503| (struct pre_sysdep_string *) # 504|-> xmalloc (xsum (sizeof (struct pre_sysdep_string), # 505| xtimes (nintervals[m], # 506| sizeof (struct pre_segment_pair)))); Error: COMPILER_WARNING: [#def1234] gettext-0.24/gettext-tools/src/write-mo.c: scope_hint: In function ‘write_table’ gettext-0.24/gettext-tools/src/write-mo.c:504:19: warning[-Walloc-size-larger-than=]: argument 1 value ‘18446744073709551615’ exceeds maximum object size 9223372036854775807 # 504 | xmalloc (xsum (sizeof (struct pre_sysdep_string), # | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # 505 | xtimes (nintervals[m], # | ~~~~~~~~~~~~~~~~~~~~~~ # 506 | sizeof (struct pre_segment_pair)))); # | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ gettext-0.24/gettext-tools/src/write-mo.c:46: included_from: Included from here. gettext-0.24/gettext-tools/gnulib-lib/xalloc.h:59:7: note: in a call to allocation function ‘xmalloc’ declared here # 59 | void *xmalloc (size_t s) # | ^~~~~~~ # 502| struct pre_sysdep_string *pre = # 503| (struct pre_sysdep_string *) # 504|-> xmalloc (xsum (sizeof (struct pre_sysdep_string), # 505| xtimes (nintervals[m], # 506| sizeof (struct pre_segment_pair)))); Error: COMPILER_WARNING: [#def1235] gettext-0.24/gettext-tools/src/write-mo.c:504:19: warning[-Walloc-size-larger-than=]: argument 1 value ‘18446744073709551615’ exceeds maximum object size 9223372036854775807 # 502| struct pre_sysdep_string *pre = # 503| (struct pre_sysdep_string *) # 504|-> xmalloc (xsum (sizeof (struct pre_sysdep_string), # 505| xtimes (nintervals[m], # 506| sizeof (struct pre_segment_pair)))); Error: COMPILER_WARNING: [#def1236] gettext-0.24/gettext-tools/src/write-po.c:647:17: warning[-Wstringop-overflow=]: '__builtin_memset' specified bound 18446744073709551614 exceeds maximum object size 9223372036854775807 # 647 | do *++p = c; while (--n > 0); # | ^ # 645| *p = c; # 646| if (--n > 0) # 647|-> do *++p = c; while (--n > 0); # 648| } # 649| } Error: COMPILER_WARNING (CWE-476): [#def1237] gettext-0.24/gettext-tools/tree-sitter-0.23.2/lib/src/language.h:275:32: warning[-Wnull-dereference]: potential null pointer dereference # 275 | for (const char *chr = name; *chr; chr++) { # | ^~~~ # 273| ) { # 274| const char *name = ts_language_symbol_name(self, symbol); # 275|-> for (const char *chr = name; *chr; chr++) { # 276| switch (*chr) { # 277| case '"': Error: COMPILER_WARNING: [#def1238] gettext-0.24/gettext-tools/tree-sitter-0.23.2/lib/src/lib.c:6: included_from: Included from here. gettext-0.24/gettext-tools/tree-sitter-0.23.2/lib/src/lexer.c: scope_hint: In function ‘ts_lexer__log’ gettext-0.24/gettext-tools/tree-sitter-0.23.2/lib/src/lexer.c:293:5: warning[-Wsuggest-attribute=format]: function ‘ts_lexer__log’ might be a candidate for ‘gnu_printf’ format attribute # 293 | vsnprintf(self->debug_buffer, TREE_SITTER_SERIALIZATION_BUFFER_SIZE, fmt, args); # | ^~~~~~~~~ # 291| va_start(args, fmt); # 292| if (self->logger.log) { # 293|-> vsnprintf(self->debug_buffer, TREE_SITTER_SERIALIZATION_BUFFER_SIZE, fmt, args); # 294| self->logger.log(self->logger.payload, TSLogTypeLex, self->debug_buffer); # 295| } Error: COMPILER_WARNING (CWE-476): [#def1239] gettext-0.24/gettext-tools/tree-sitter-0.23.2/lib/src/parser.c:43:13: warning[-Wnull-dereference]: potential null pointer dereference # 43 | symbol[i] != '\0' \ # | ~~~~~~^~~ # 41| for ( \ # 42| int i = 0; \ # 43|-> symbol[i] != '\0' \ # 44| && off < TREE_SITTER_SERIALIZATION_BUFFER_SIZE; \ # 45| i++ \ Error: COMPILER_WARNING (CWE-476): [#def1240] gettext-0.24/gettext-tools/tree-sitter-0.23.2/lib/src/parser.c: scope_hint: In function 'ts_parser__lex' gettext-0.24/gettext-tools/tree-sitter-0.23.2/lib/src/parser.c:689:3: warning[-Wnull-dereference]: potential null pointer dereference # 689 | LOG_LOOKAHEAD( # | ^ # 687| } # 688| # 689|-> LOG_LOOKAHEAD( # 690| SYM_NAME(ts_subtree_symbol(result)), # 691| ts_subtree_total_size(result).bytes Error: CPPCHECK_WARNING (CWE-768): [#def1241] gettext-0.24/gettext-tools/tree-sitter-0.23.2/lib/src/parser.c:1864: error[unknownEvaluationOrder]: Expression 'self,0,(union Subtree){.ptr=NULL},(union Subtree){.ptr=NULL}' depends on order of evaluation of side effects # 1862| self->included_range_differences = (TSRangeArray) array_new(); # 1863| self->included_range_difference_index = 0; # 1864|-> ts_parser__set_cached_token(self, 0, NULL_SUBTREE, NULL_SUBTREE); # 1865| return self; # 1866| } Error: CPPCHECK_WARNING (CWE-768): [#def1242] gettext-0.24/gettext-tools/tree-sitter-0.23.2/lib/src/parser.c:1885: error[unknownEvaluationOrder]: Expression 'self,0,(union Subtree){.ptr=NULL},(union Subtree){.ptr=NULL}' depends on order of evaluation of side effects # 1883| ts_wasm_store_delete(self->wasm_store); # 1884| ts_lexer_delete(&self->lexer); # 1885|-> ts_parser__set_cached_token(self, 0, NULL_SUBTREE, NULL_SUBTREE); # 1886| ts_subtree_pool_delete(&self->tree_pool); # 1887| reusable_node_delete(&self->reusable_node); Error: CPPCHECK_WARNING (CWE-768): [#def1243] gettext-0.24/gettext-tools/tree-sitter-0.23.2/lib/src/parser.c:1987: error[unknownEvaluationOrder]: Expression 'self,0,(union Subtree){.ptr=NULL},(union Subtree){.ptr=NULL}' depends on order of evaluation of side effects # 1985| ts_lexer_reset(&self->lexer, length_zero()); # 1986| ts_stack_clear(self->stack); # 1987|-> ts_parser__set_cached_token(self, 0, NULL_SUBTREE, NULL_SUBTREE); # 1988| if (self->finished_tree.ptr) { # 1989| ts_subtree_release(&self->tree_pool, self->finished_tree); Error: COMPILER_WARNING (CWE-476): [#def1244] gettext-0.24/gettext-tools/tree-sitter-0.23.2/lib/src/parser.c:2002:46: warning[-Wnull-dereference]: potential null pointer dereference # 2002 | if (!self->language || !input.read) return NULL; # | ^ # 2000| ) { # 2001| TSTree *result = NULL; # 2002|-> if (!self->language || !input.read) return NULL; # 2003| # 2004| if (ts_language_is_wasm(self->language)) { Error: COMPILER_WARNING (CWE-670): [#def1245] gettext-0.24/gettext-tools/tree-sitter-0.23.2/lib/src/lib.c:9: included_from: Included from here. gettext-0.24/gettext-tools/tree-sitter-0.23.2/lib/src/query.c: scope_hint: In function ‘ts_query_cursor_exec’ gettext-0.24/gettext-tools/tree-sitter-0.23.2/lib/src/query.c:3037:17: warning[-Wduplicated-branches]: this condition has identical branches # 3037 | } else if (step->symbol != WILDCARD_SYMBOL) { # | ^ # 3035| } else if (step->is_pass_through) { # 3036| LOG("pass_through"); # 3037|-> } else if (step->symbol != WILDCARD_SYMBOL) { # 3038| LOG("symbol: %s", query->language->symbol_names[step->symbol]); # 3039| } else { Error: COMPILER_WARNING (CWE-476): [#def1246] gettext-0.24/gettext-tools/tree-sitter-0.23.2/lib/src/reusable_node.h:65:5: warning[-Wnull-dereference]: potential null pointer dereference # 65 | array_push(&self->stack, ((StackEntry) { # | ^ # 63| StackEntry last_entry = *array_back(&self->stack); # 64| if (ts_subtree_child_count(last_entry.tree) > 0) { # 65|-> array_push(&self->stack, ((StackEntry) { # 66| .tree = ts_subtree_children(last_entry.tree)[0], # 67| .child_index = 0, Error: COMPILER_WARNING (CWE-476): [#def1247] gettext-0.24/gettext-tools/tree-sitter-0.23.2/lib/src/reusable_node.h:66:51: warning[-Wnull-dereference]: potential null pointer dereference # 66 | .tree = ts_subtree_children(last_entry.tree)[0], # 64| if (ts_subtree_child_count(last_entry.tree) > 0) { # 65| array_push(&self->stack, ((StackEntry) { # 66|-> .tree = ts_subtree_children(last_entry.tree)[0], # 67| .child_index = 0, # 68| .byte_offset = last_entry.byte_offset, Error: COMPILER_WARNING: [#def1248] gettext-0.24/gettext-tools/tree-sitter-0.23.2/lib/src/lib.c:10: included_from: Included from here. gettext-0.24/gettext-tools/tree-sitter-0.23.2/lib/src/stack.c: scope_hint: In function ‘ts_stack_print_dot_graph’ gettext-0.24/gettext-tools/tree-sitter-0.23.2/lib/src/stack.c:806:67: warning[-Wformat=]: format ‘%X’ expects argument of type ‘unsigned int’, but argument 3 has type ‘int’ # 806 | for (uint32_t j = 0; j < state->length; j++) fprintf(f, " %2X", data[j]); # | ~~^ ~~~~~~~ # | | | # | | int # | unsigned int # | %2X # 804| const char *data = ts_external_scanner_state_data(state); # 805| fprintf(f, "\nexternal_scanner_state:"); # 806|-> for (uint32_t j = 0; j < state->length; j++) fprintf(f, " %2X", data[j]); # 807| } # 808| Error: COMPILER_WARNING (CWE-476): [#def1249] gettext-0.24/gettext-tools/tree-sitter-0.23.2/lib/src/subtree.c:308:53: warning[-Wnull-dereference]: potential null pointer dereference # 308 | MutableSubtree child = ts_subtree_to_mut_unsafe(ts_subtree_children(tree)[0]); # | ^ # 306| if (tree.ptr->ref_count > 1 || tree.ptr->child_count < 2) break; # 307| # 308|-> MutableSubtree child = ts_subtree_to_mut_unsafe(ts_subtree_children(tree)[0]); # 309| if ( # 310| child.data.is_inline || Error: COMPILER_WARNING (CWE-476): [#def1250] gettext-0.24/gettext-tools/tree-sitter-0.23.2/lib/src/subtree.c:333:53: warning[-Wnull-dereference]: potential null pointer dereference # 333 | MutableSubtree child = ts_subtree_to_mut_unsafe(ts_subtree_children(tree)[0]); # | ^ # 331| while (stack->size > initial_stack_size) { # 332| tree = array_pop(stack); # 333|-> MutableSubtree child = ts_subtree_to_mut_unsafe(ts_subtree_children(tree)[0]); # 334| MutableSubtree grandchild = ts_subtree_to_mut_unsafe(ts_subtree_children(child)[child.ptr->child_count - 1]); # 335| ts_subtree_summarize_children(grandchild, language); Error: COMPILER_WARNING (CWE-476): [#def1251] gettext-0.24/gettext-tools/tree-sitter-0.23.2/lib/src/subtree.c: scope_hint: In function ‘ts_subtree_balance’ gettext-0.24/gettext-tools/tree-sitter-0.23.2/lib/src/subtree.c:352:15: warning[-Wnull-dereference]: potential null pointer dereference # 352 | Subtree child1 = ts_subtree_children(tree)[0]; # | ^~~~~~ # 350| # 351| if (tree.ptr->u.non_terminal.repeat_depth > 0) { # 352|-> Subtree child1 = ts_subtree_children(tree)[0]; # 353| Subtree child2 = ts_subtree_children(tree)[tree.ptr->child_count - 1]; # 354| long repeat_delta = (long)ts_subtree_repeat_depth(child1) - (long)ts_subtree_repeat_depth(child2); Error: COMPILER_WARNING: [#def1252] gettext-0.24/gettext-tools/tree-sitter-0.23.2/lib/src/lib.c:11: included_from: Included from here. gettext-0.24/gettext-tools/tree-sitter-0.23.2/lib/src/subtree.c: scope_hint: In function ‘ts_subtree__print_dot_graph’ gettext-0.24/gettext-tools/tree-sitter-0.23.2/lib/src/subtree.c:1000:14: warning[-Wformat=]: format ‘%u’ expects argument of type ‘unsigned int’, but argument 7 has type ‘int’ # 1000 | fprintf(f, ", tooltip=\"" # | ^~~~~~~~~~~~~~ #...... # 1012 | ts_subtree_has_changes(*self), # | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # | | # | int gettext-0.24/gettext-tools/tree-sitter-0.23.2/lib/src/subtree.c:1004:20: note: format string is defined here # 1004 | "has-changes: %u\n" # | ~^ # | | # | unsigned int # | %u # 998| if (ts_subtree_extra(*self)) fprintf(f, ", fontcolor=gray"); # 999| # 1000|-> fprintf(f, ", tooltip=\"" # 1001| "range: %u - %u\n" # 1002| "state: %d\n" Error: COMPILER_WARNING: [#def1253] gettext-0.24/gettext-tools/tree-sitter-0.23.2/lib/src/subtree.c:1000:14: warning[-Wformat=]: format ‘%u’ expects argument of type ‘unsigned int’, but argument 8 has type ‘int’ # 1000 | fprintf(f, ", tooltip=\"" # | ^~~~~~~~~~~~~~ #...... # 1013 | ts_subtree_depends_on_column(*self), # | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # | | # | int gettext-0.24/gettext-tools/tree-sitter-0.23.2/lib/src/subtree.c:1005:26: note: format string is defined here # 1005 | "depends-on-column: %u\n" # | ~^ # | | # | unsigned int # | %u # 998| if (ts_subtree_extra(*self)) fprintf(f, ", fontcolor=gray"); # 999| # 1000|-> fprintf(f, ", tooltip=\"" # 1001| "range: %u - %u\n" # 1002| "state: %d\n" Error: COMPILER_WARNING (CWE-476): [#def1254] gettext-0.24/gettext-tools/tree-sitter-0.23.2/lib/src/subtree.h:238:33: warning[-Wnull-dereference]: potential null pointer dereference # 238 | ((self).data.is_inline ? NULL : (Subtree *)((self).ptr) - (self).ptr->child_count) # | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ # 236| // tree's own heap data. # 237| #define ts_subtree_children(self) \ # 238|-> ((self).data.is_inline ? NULL : (Subtree *)((self).ptr) - (self).ptr->child_count) # 239| # 240| static inline void ts_subtree_set_extra(MutableSubtree *self, bool is_extra) { Error: COMPILER_WARNING: [#def1255] gettext-0.24/gettext-tools/tree-sitter-rust-0.23.2/src/rust-scanner.c: scope_hint: In function ‘tree_sitter_rust_external_scanner_deserialize’ gettext-0.24/gettext-tools/tree-sitter-rust-0.23.2/src/rust-scanner.c:37:18: warning[-Wshadow=compatible-local]: declaration of ‘scanner’ shadows a previous local # 37 | Scanner *scanner = (Scanner *)payload; # | ^~~~~~~ gettext-0.24/gettext-tools/tree-sitter-rust-0.23.2/src/rust-scanner.c:34:14: note: shadowed declaration is here # 34 | Scanner *scanner = (Scanner *)payload; # | ^~~~~~~ # 35| scanner->opening_hash_count = 0; # 36| if (length == 1) { # 37|-> Scanner *scanner = (Scanner *)payload; # 38| scanner->opening_hash_count = buffer[0]; # 39| } Error: GCC_ANALYZER_WARNING (CWE-835): [#def1256] gettext-0.24/libtextstyle/lib/html-ostream.oo.c:176:23: warning[-Wanalyzer-infinite-loop]: infinite loop gettext-0.24/libtextstyle/lib/html-ostream.oo.c:176:23: danger: infinite loop here gettext-0.24/libtextstyle/lib/html-ostream.oo.c:178:16: branch_false: when ‘n == 0’: always following ‘false’ branch... gettext-0.24/libtextstyle/lib/html-ostream.oo.c:191:19: branch_false: ...to here gettext-0.24/libtextstyle/lib/html-ostream.oo.c:191:20: branch_false: when ‘insize == 0’: always following ‘false’ branch... gettext-0.24/libtextstyle/lib/html-ostream.oo.c:269:16: branch_false: ...to here gettext-0.24/libtextstyle/lib/html-ostream.oo.c:269:16: branch_false: when ‘len != 0’: always following ‘false’ branch... gettext-0.24/libtextstyle/lib/html-ostream.oo.c:276:16: branch_false: ...to here gettext-0.24/libtextstyle/lib/html-ostream.oo.c:276:16: branch_false: when ‘insize == 0’: always following ‘false’ branch... branch_false: ...to here # 174| /* Combine the previous rest with a chunk of new input. */ # 175| size_t n = # 176|-> (len <= BUFFERSIZE - inbufcount ? len : BUFFERSIZE - inbufcount); # 177| # 178| if (n > 0) Error: COMPILER_WARNING: [#def1257] gettext-0.24/libtextstyle/lib/libcroco/cr-parsing-location.c: scope_hint: In function 'libtextstyle_cr_parsing_location_to_string' gettext-0.24/libtextstyle/lib/libcroco/cr-parsing-location.c:128:56: warning[-Wformat=]: format '%d' expects argument of type 'int', but argument 3 has type 'guint' {aka 'unsigned int'} # 128 | g_string_append_printf (result, "line:%d ", # | ~^ # | | # | int # | %d # 129 | a_this->line) ; # | ~~~~~~~~~~~~ # | | # | guint {aka unsigned int} # 126| return NULL ; # 127| if (a_mask & DUMP_LINE) { # 128|-> g_string_append_printf (result, "line:%d ", # 129| a_this->line) ; # 130| } Error: COMPILER_WARNING: [#def1258] gettext-0.24/libtextstyle/lib/libcroco/cr-parsing-location.c:132:58: warning[-Wformat=]: format '%d' expects argument of type 'int', but argument 3 has type 'guint' {aka 'unsigned int'} # 132 | g_string_append_printf (result, "column:%d ", # | ~^ # | | # | int # | %d # 133 | a_this->column) ; # | ~~~~~~~~~~~~~~ # | | # | guint {aka unsigned int} # 130| } # 131| if (a_mask & DUMP_COLUMN) { # 132|-> g_string_append_printf (result, "column:%d ", # 133| a_this->column) ; # 134| } Error: COMPILER_WARNING: [#def1259] gettext-0.24/libtextstyle/lib/libcroco/cr-parsing-location.c:136:63: warning[-Wformat=]: format '%d' expects argument of type 'int', but argument 3 has type 'guint' {aka 'unsigned int'} # 136 | g_string_append_printf (result, "byte offset:%d ", # | ~^ # | | # | int # | %d # 137 | a_this->byte_offset) ; # | ~~~~~~~~~~~~~~~~~~~ # | | # | guint {aka unsigned int} # 134| } # 135| if (a_mask & DUMP_BYTE_OFFSET) { # 136|-> g_string_append_printf (result, "byte offset:%d ", # 137| a_this->byte_offset) ; # 138| }
analyzer-version-clippy | 1.86.0 |
analyzer-version-cppcheck | 2.17.1 |
analyzer-version-gcc | 15.0.1 |
analyzer-version-gcc-analyzer | 15.0.1 |
analyzer-version-shellcheck | 0.10.0 |
analyzer-version-unicontrol | 0.0.2 |
enabled-plugins | clippy, cppcheck, gcc, shellcheck, unicontrol |
exit-code | 0 |
host | ip-172-16-1-199.us-west-2.compute.internal |
known-false-positives | /usr/share/csmock/known-false-positives.js |
known-false-positives-rpm | known-false-positives-0.0.0.20250425.124705.g1c7c448.main-1.el9.noarch |
mock-config | fedora-rawhide-x86_64 |
project-name | gettext-0.24-1.fc43 |
store-results-to | /tmp/tmpsw5tsdfw/gettext-0.24-1.fc43.tar.xz |
time-created | 2025-04-25 12:50:33 |
time-finished | 2025-04-25 13:08:33 |
tool | csmock |
tool-args | '/usr/bin/csmock' '-r' 'fedora-rawhide-x86_64' '-t' 'unicontrol,cppcheck,gcc,clippy,shellcheck' '-o' '/tmp/tmpsw5tsdfw/gettext-0.24-1.fc43.tar.xz' '--gcc-analyze' '--unicontrol-notests' '--unicontrol-bidi-only' '--install' 'pam' '--gcc-analyzer-bin=/usr/bin/gcc' '/tmp/tmpsw5tsdfw/gettext-0.24-1.fc43.src.rpm' |
tool-version | csmock-3.8.1.20250422.172604.g26bc3d6-1.el9 |