Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit adfc50b1 authored by Carmelo Messina's avatar Carmelo Messina
Browse files

Remove sideloading of version.dll: disabling support for local version.dll...

Remove sideloading of version.dll: disabling support for local version.dll loading in windows (#1474)
parent 275a7d60
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -293,6 +293,7 @@ Bubble-Locking-on-UI-DevTools.patch
Add-a-GN-flag-to-disable-trybot-verification.patch
Override-the-MV2-deprecation.patch
Enable-ClickToCall.patch
Remove-sideloading-of-version-dll.patch

# temporary or wip patches
Temp-PerformanceNavigationTiming-privacy-fix.patch
+23 −0
Original line number Diff line number Diff line
From: uazo <uazo@users.noreply.github.com>
Date: Sun, 15 Sep 2024 09:41:40 +0000
Subject: Remove sideloading of version.dll

Disabling support for local version.dll loading in windows

License: GPL-2.0-or-later - https://spdx.org/licenses/GPL-2.0-or-later.html
---
 build/win/as_invoker.manifest | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/build/win/as_invoker.manifest b/build/win/as_invoker.manifest
--- a/build/win/as_invoker.manifest
+++ b/build/win/as_invoker.manifest
@@ -1,5 +1,7 @@
 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
 <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
+<!-- Remove version dll hack -->
+<file name="version.dll" loadFrom="%SystemRoot%\system32\" />
 <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
   <security>
     <requestedPrivileges>
--