Use try_from_bytes for windows build (#7500)

Reduce windows build error.

Release Notes:

- N/A
This commit is contained in:
白山風露 2024-02-08 01:27:26 +09:00 committed by GitHub
parent c7b022144f
commit 42a5081aff
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5,14 +5,12 @@ use parking_lot::Mutex;
use serde_derive::{Deserialize, Serialize};
use std::{
cmp::Ordering,
ffi::OsStr,
os::unix::prelude::OsStrExt,
path::{Component, Path, PathBuf},
sync::Arc,
time::SystemTime,
};
use sum_tree::{MapSeekTarget, TreeMap};
use util::ResultExt;
use util::{paths::PathExt, ResultExt};
pub use git2::Repository as LibGitRepository;
@ -119,7 +117,7 @@ impl GitRepository for LibGitRepository {
if let Some(statuses) = self.statuses(Some(&mut options)).log_err() {
for status in statuses.iter() {
let path = RepoPath(PathBuf::from(OsStr::from_bytes(status.path_bytes())));
let path = RepoPath(PathBuf::try_from_bytes(status.path_bytes()).unwrap());
let status = status.status();
if !status.contains(git2::Status::IGNORED) {
if let Some(status) = read_status(status) {