diff options
author | Michael Forney <mforney@mforney.org> | 2019-02-22 21:28:43 -0800 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2019-02-22 21:45:00 -0800 |
commit | e8863971221faba91357310b0c8be0fb2951ef22 (patch) | |
tree | b661be7729fe3c3c3414101e4fd45d287c78446b /tests/initializer-string.c | |
parent | 8b10f07e6260895025a4ea0efa05b8bd57ca92d9 (diff) |
Fix size of incomplete array types initialized with strings
updatearray takes an index, so was allocating an extra byte.
Diffstat (limited to 'tests/initializer-string.c')
-rw-r--r-- | tests/initializer-string.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/initializer-string.c b/tests/initializer-string.c new file mode 100644 index 0000000..c92f897 --- /dev/null +++ b/tests/initializer-string.c @@ -0,0 +1,4 @@ +char x[] = "hello"; +void f(void) { + char y[] = "hello"; +} |