diff options
author | Siddhesh Poyarekar <siddhesh@redhat.com> | 2013-04-15 11:35:43 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@redhat.com> | 2013-04-15 11:35:43 +0530 |
commit | 5cb26d0aed9c7414f0d391a0ca766786625de8b5 (patch) | |
tree | 5dc9bd95f370d870d8e2849d7114c69a7306fadd /libio | |
parent | acb4325fc72d5eeecf3cf3fe63c599e582bb3bd0 (diff) | |
download | glibc-5cb26d0aed9c7414f0d391a0ca766786625de8b5.tar glibc-5cb26d0aed9c7414f0d391a0ca766786625de8b5.tar.gz glibc-5cb26d0aed9c7414f0d391a0ca766786625de8b5.tar.bz2 glibc-5cb26d0aed9c7414f0d391a0ca766786625de8b5.zip |
Fix off-by-one bug in tst-fwrite-error
tst-fwrite-error did not allocate enough space for the string 'world'
and its NULL terminator. Fixed.
Diffstat (limited to 'libio')
-rw-r--r-- | libio/tst-fwrite-error.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libio/tst-fwrite-error.c b/libio/tst-fwrite-error.c index e2507effe7..87c876627e 100644 --- a/libio/tst-fwrite-error.c +++ b/libio/tst-fwrite-error.c @@ -36,7 +36,7 @@ do_test (void) return 1; } - char buf[5] = "world"; + char buf[] = "world"; setvbuf (fp, NULL, _IONBF, 0); close (fd); unlink (tmpl); |