summaryrefslogtreecommitdiff
path: root/xpcom/components/nsNativeModuleLoader.cpp
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2022-05-09 22:38:16 +0000
committerMoonchild <moonchild@palemoon.org>2022-05-09 22:38:16 +0000
commit9edf1b7bea5ff893f88911fc1a6a2dca3faeece9 (patch)
tree98bd9b0c7e3ca3e517e9e43dea157707b13f6bdb /xpcom/components/nsNativeModuleLoader.cpp
parent930ddd693be251c86ee904dafbaef38234b692c0 (diff)
downloaduxp-getnativepath-work.tar.gz
Issue #1896 - Port GetNativePath changes from GRE.getnativepath-work
Diffstat (limited to 'xpcom/components/nsNativeModuleLoader.cpp')
-rw-r--r--xpcom/components/nsNativeModuleLoader.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/xpcom/components/nsNativeModuleLoader.cpp b/xpcom/components/nsNativeModuleLoader.cpp
index bec3a11757..42e322be1b 100644
--- a/xpcom/components/nsNativeModuleLoader.cpp
+++ b/xpcom/components/nsNativeModuleLoader.cpp
@@ -104,7 +104,13 @@ nsNativeModuleLoader::LoadModule(FileLocation& aFile)
}
nsAutoCString filePath;
+#ifdef XP_WIN
+ nsAutoString filePathW;
+ file->GetPath(filePathW);
+ CopyUTF16toUTF8(filePathW, filePath);
+#else
file->GetNativePath(filePath);
+#endif
NativeLoadData data;