From 7435aef8d027a45537d36d1a3c0c0ccd73157335 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Thu, 24 Mar 2005 22:06:36 +0000 Subject: [PATCH] (Ffile_attributes): Add a missing gcpro. --- src/dired.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/dired.c b/src/dired.c index ab6d0569107..62bf4beb384 100644 --- a/src/dired.c +++ b/src/dired.c @@ -906,6 +906,7 @@ Elements of the attribute list are: #endif char modes[10]; Lisp_Object handler; + struct gcpro gcpro1; filename = Fexpand_file_name (filename, Qnil); @@ -921,7 +922,9 @@ Elements of the attribute list are: return call3 (handler, Qfile_attributes, filename, id_format); } + GCPRO1 (filename); encoded = ENCODE_FILE (filename); + UNGCPRO; if (lstat (SDATA (encoded), &s) < 0) return Qnil; -- 2.39.2