------- Comment #7 from pinskia at gcc dot gnu dot org 2008-07-03 23:22 ------- (In reply to comment #4) > http://gcc.gnu.org/ml/gcc-patches/2007-06/msg02037.html
This patch causes the following simple testcase to fail as we are stopping at the first NULL character: int main() { char str[2][34] = {"a\0c","b"}; if (str[0][2] != 'c') __builtin_abort (); return 0; } -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31150