From 556a15567d9de0d019065eeb27597acf2d760ef5 Mon Sep 17 00:00:00 2001 From: David Major Date: Wed, 18 Nov 2020 22:21:22 +0000 Subject: [xpcom] Fix GetWindowsFolder storage --- xpcom/io/SpecialSystemDirectory.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xpcom/io/SpecialSystemDirectory.cpp b/xpcom/io/SpecialSystemDirectory.cpp index c174b4ac7..1c020c426 100644 --- a/xpcom/io/SpecialSystemDirectory.cpp +++ b/xpcom/io/SpecialSystemDirectory.cpp @@ -76,9 +76,9 @@ GetWindowsFolder(int aFolder, nsIFile** aFile) { WCHAR path_orig[MAX_PATH + 3]; WCHAR* path = path_orig + 1; - HRESULT result = SHGetSpecialFolderPathW(nullptr, path, aFolder, true); + BOOL result = SHGetSpecialFolderPathW(nullptr, path, aFolder, true); - if (!SUCCEEDED(result)) { + if (!result) { return NS_ERROR_FAILURE; } -- cgit v1.2.3