diff --git a/mozilla/xpcom/io/nsLocalFileCommon.cpp b/mozilla/xpcom/io/nsLocalFileCommon.cpp index 178398cb6b0..cae327733f7 100644 --- a/mozilla/xpcom/io/nsLocalFileCommon.cpp +++ b/mozilla/xpcom/io/nsLocalFileCommon.cpp @@ -45,6 +45,10 @@ #include "nsPrintfCString.h" #include "nsCRT.h" +#ifdef XP_WIN +#include +#endif + void NS_StartupLocalFile() { @@ -193,9 +197,14 @@ nsLocalFile::GetRelativeDescriptor(nsILocalFile *fromFile, nsACString& _retval) if (thisNodeCnt < 0 || fromNodeCnt < 0) return NS_ERROR_FAILURE; - for (nodeIndex = 0; nodeIndex < thisNodeCnt && nodeIndex < fromNodeCnt; nodeIndex++) { + for (nodeIndex = 0; nodeIndex < thisNodeCnt && nodeIndex < fromNodeCnt; ++nodeIndex) { +#ifdef XP_WIN + if (_wcsicmp(thisNodes[nodeIndex], fromNodes[nodeIndex])) + break; +#else if (nsCRT::strcmp(thisNodes[nodeIndex], fromNodes[nodeIndex])) break; +#endif } PRInt32 branchIndex = nodeIndex;