From d9b0b866700d7d54f630ac8f66f1a27c91d17a82 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 11 Oct 2001 13:16:24 +0000 Subject: 2001-10-10 Joel Sherrill * src/imfs/imfs_getchild.c: Correct length of static string as reported by Ibragimov Ilya . --- cpukit/libfs/ChangeLog | 5 +++++ cpukit/libfs/src/imfs/imfs_getchild.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) (limited to 'cpukit') diff --git a/cpukit/libfs/ChangeLog b/cpukit/libfs/ChangeLog index 7fc949573f..1521f706b7 100644 --- a/cpukit/libfs/ChangeLog +++ b/cpukit/libfs/ChangeLog @@ -1,3 +1,8 @@ +2001-10-10 Joel Sherrill + + * src/imfs/imfs_getchild.c: Correct length of static string + as reported by Ibragimov Ilya . + 2001-09-28 Ralf Corsepius * src/imfs/Makefile.am: Use 'PREINSTALL_FILES ='. diff --git a/cpukit/libfs/src/imfs/imfs_getchild.c b/cpukit/libfs/src/imfs/imfs_getchild.c index 9afc29e64d..a539fe7def 100644 --- a/cpukit/libfs/src/imfs/imfs_getchild.c +++ b/cpukit/libfs/src/imfs/imfs_getchild.c @@ -22,7 +22,7 @@ #include "imfs.h" static char dotname[2] = "."; -static char dotdotname[2] = ".."; +static char dotdotname[3] = ".."; IMFS_jnode_t *IMFS_find_match_in_dir( IMFS_jnode_t *directory, -- cgit v1.2.3