summaryrefslogtreecommitdiff
path: root/xpcom/base/nsDumpUtils.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/base/nsDumpUtils.cpp
parent930ddd693be251c86ee904dafbaef38234b692c0 (diff)
downloaduxp-9edf1b7bea5ff893f88911fc1a6a2dca3faeece9.tar.gz
Issue #1896 - Port GetNativePath changes from GRE.getnativepath-work
Diffstat (limited to 'xpcom/base/nsDumpUtils.cpp')
-rw-r--r--xpcom/base/nsDumpUtils.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/xpcom/base/nsDumpUtils.cpp b/xpcom/base/nsDumpUtils.cpp
index 1333fdb63f..df71bde10b 100644
--- a/xpcom/base/nsDumpUtils.cpp
+++ b/xpcom/base/nsDumpUtils.cpp
@@ -324,7 +324,11 @@ FifoWatcher::OpenFd()
}
nsAutoCString path;
+#ifdef XP_WIN
+ rv = file->GetPersistentDescriptor(path);
+#else
rv = file->GetNativePath(path);
+#endif
if (NS_WARN_IF(NS_FAILED(rv))) {
return -1;
}