From def4783a8a8b00f58d224ff6735d3532809aeb54 Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Sun, 18 Apr 2010 20:39:41 -0700 Subject: vi: remove superfluous check on filename == "" Signed-off-by: Denys Vlasenko --- editors/vi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'editors/vi.c') diff --git a/editors/vi.c b/editors/vi.c index 28612508f..f925984ba 100644 --- a/editors/vi.c +++ b/editors/vi.c @@ -2306,7 +2306,7 @@ static int file_size(const char *fn) // what is the byte size of "fn" int cnt; cnt = -1; - if (fn && fn[0] && stat(fn, &st_buf) == 0) // see if file exists + if (fn && stat(fn, &st_buf) == 0) // see if file exists cnt = (int) st_buf.st_size; return cnt; } -- cgit v1.2.3