From 91018cec0157f649a0b4b5db7399e683e7089093 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 6 Apr 2019 17:53:30 +0300 Subject: [PATCH] Encode the FILENAME argument of 'file-locked-p' * src/filelock.c (Ffile_locked_p): Encode the file name, before passing it to system APIs. (Bug#35171) --- src/filelock.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/filelock.c b/src/filelock.c index 5cec1996201..baf87b7f635 100644 --- a/src/filelock.c +++ b/src/filelock.c @@ -822,6 +822,7 @@ t if it is locked by you, else a string saying which user has locked it. */) USE_SAFE_ALLOCA; filename = Fexpand_file_name (filename, Qnil); + filename = ENCODE_FILE (filename); MAKE_LOCK_NAME (lfname, filename); -- 2.39.2