We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36b45ef commit 38769e6Copy full SHA for 38769e6
qiling/loader/pe.py
@@ -31,10 +31,10 @@ class QlPeCacheEntry(NamedTuple):
31
class QlPeCache:
32
@staticmethod
33
def cache_filename(path: str) -> str:
34
- dirname, basename = ntpath.split(path)
+ dirname, basename = os.path.split(path)
35
36
# canonicalize basename while preserving the path
37
- path = ntpath.join(dirname, basename.casefold())
+ path = os.path.join(dirname, basename.casefold())
38
39
return f'{path}.cache2'
40
0 commit comments