🐛 forgot this

This commit is contained in:
ValKmjolnir 2024-06-20 00:31:58 +08:00
parent bbd4d1907b
commit 858ffdcb61
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ std::string search_dynamic_library_path(const std::string& dlname) {
const auto sep = (util::is_windows()? ";":":");
// do split string
std::vector<std::string> env_path_vec = {};
std::vector<std::string> env_path_vec = {"."};
usize last = 0;
usize pos = env_path.find(sep, 0);
while(pos!=std::string::npos) {