diff options
author | joe <rbo@gmx.us> | 2025-08-28 12:39:10 +0200 |
---|---|---|
committer | joe <rbo@gmx.us> | 2025-08-28 12:39:10 +0200 |
commit | 865da9acbe2a1526082453ac403443652f6bcf43 (patch) | |
tree | ab2af116df961b01939209b082d246b806317a88 /src/c_fuzz.go | |
parent | quick fix (diff) | |
download | hardflip-fuzz.tar.gz hardflip-fuzz.tar.bz2 hardflip-fuzz.tar.xz hardflip-fuzz.tar.zst hardflip-fuzz.zip |
okfuzz
Diffstat (limited to 'src/c_fuzz.go')
-rw-r--r-- | src/c_fuzz.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/c_fuzz.go b/src/c_fuzz.go index e183a85..fb230e1 100644 --- a/src/c_fuzz.go +++ b/src/c_fuzz.go @@ -84,7 +84,7 @@ func c_fuzz_find_item(str_out string, litems *ItemsList) (*ItemsNode) { if ptr.is_dir() == true { continue } - if strings.Compare(name, ptr.Host.Name) == 0 && strings.Compare(path, ptr.path()) == 0 { + if name == ptr.Host.Name && path == ptr.path() { return ptr } } |