From 66c606a28f9adebceb405bc074e96292401b41aa Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Thu, 11 Sep 2025 08:05:12 -0500 Subject: [PATCH] fix --- .../librepertory/include/providers/encrypt/encrypt_provider.hpp | 1 - support/src/utils/unix.cpp | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/repertory/librepertory/include/providers/encrypt/encrypt_provider.hpp b/repertory/librepertory/include/providers/encrypt/encrypt_provider.hpp index 0d6b643c..e586c488 100644 --- a/repertory/librepertory/include/providers/encrypt/encrypt_provider.hpp +++ b/repertory/librepertory/include/providers/encrypt/encrypt_provider.hpp @@ -58,7 +58,6 @@ private: private: std::unique_ptr file_db_{nullptr}; - i_file_manager *fm_{nullptr}; utils::hash::hash_256_t master_key_{}; std::unordered_map> reader_lookup_; std::recursive_mutex reader_lookup_mtx_; diff --git a/support/src/utils/unix.cpp b/support/src/utils/unix.cpp index de59f20e..03b67b51 100644 --- a/support/src/utils/unix.cpp +++ b/support/src/utils/unix.cpp @@ -403,7 +403,7 @@ auto launchctl_command(std::string_view label, launchctl_type type) -> int { auto remove_launchd_plist(std::string_view plist_path, std::string_view label, bool should_bootout) -> bool { auto file = utils::file::file{ - utils::path::combine(plist_path, {label + ".plist"}), + utils::path::combine(plist_path, {std::string{label} + ".plist"}), }; if (not file.exists()) { return true;