From fda1996850576c97330abb627e863fd1ecc341c6 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 11 Oct 2001 13:17:04 +0000 Subject: 2001-10-10 Joel Sherrill * imfs_getchild.c: Correct length of static string as reported by Ibragimov Ilya . --- c/src/lib/libc/imfs_getchild.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c/src/lib/libc/imfs_getchild.c b/c/src/lib/libc/imfs_getchild.c index f70a8f292c..46dd709c8c 100644 --- a/c/src/lib/libc/imfs_getchild.c +++ b/c/src/lib/libc/imfs_getchild.c @@ -18,7 +18,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