From 049f1d1434c5e3dc5f1c6a0d57711b33911c3b12 Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Sun, 14 Apr 2019 01:36:13 -0400 Subject: Protect against cmd operands beginning with "-" --- (limited to 'src/locale.sh') diff --git a/src/locale.sh b/src/locale.sh index 8a72926..63a38e9 100644 --- a/src/locale.sh +++ b/src/locale.sh @@ -38,7 +38,7 @@ _try_load_locale() # informative error message before aborting, we need this # eval/cat command. This is more resilient against race # conditions than `[ -f "${ms}" ]` is. - eval "$(cat "${ms}" 2>/dev/null)" || continue + eval "$(cat -- "${ms}" 2>/dev/null)" || continue return 0 done -- cgit v0.9.1