From 204ee271638c4cfb437cc536410a273d49c79a04 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 29 Nov 2001 00:52:55 +0000 Subject: [PATCH] (Ffind_file_name_handler): Avoid initializer for `result'. --- src/fileio.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/fileio.c b/src/fileio.c index 2b9d87d54df..331d5c85d33 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -336,9 +336,10 @@ use the standard functions without calling themselves recursively. */) Lisp_Object filename, operation; { /* This function must not munge the match data. */ - Lisp_Object chain, inhibited_handlers, result = Qnil; + Lisp_Object chain, inhibited_handlers, result; int pos = -1; + result = Qnil; CHECK_STRING (filename); if (EQ (operation, Vinhibit_file_name_operation)) -- 2.39.5