[tor-commits] [tor-browser/tor-browser-52.2.0esr-7.5-1] Don't break accessibility support for Windows

gk at torproject.org gk at torproject.org
Mon Jul 31 11:08:03 UTC 2017


commit 84d370aab03e45fbafef90b0fd99153e45a1b64a
Author: Georg Koppen <gk at torproject.org>
Date:   Mon Jul 31 11:07:12 2017 +0000

    Don't break accessibility support for Windows
    
    This fixes https://bugzilla.mozilla.org/show_bug.cgi?id=1372959
---
 ipc/mscom/Interceptor.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ipc/mscom/Interceptor.h b/ipc/mscom/Interceptor.h
index ecddbddf5769..88acdf6650a8 100644
--- a/ipc/mscom/Interceptor.h
+++ b/ipc/mscom/Interceptor.h
@@ -112,7 +112,7 @@ CreateInterceptor(STAUniquePtr<InterfaceT> aTargetInterface,
     return E_INVALIDARG;
   }
 
-  REFIID iidTarget = __uuidof(aTargetInterface);
+  REFIID iidTarget = __uuidof(InterfaceT);
 
   STAUniquePtr<IUnknown> targetUnknown(aTargetInterface.release());
   return Interceptor::Create(Move(targetUnknown), aEventSink, iidTarget,



More information about the tor-commits mailing list