| Index: src/plugin/AdblockPlusClient.cpp |
| =================================================================== |
| --- a/src/plugin/AdblockPlusClient.cpp |
| +++ b/src/plugin/AdblockPlusClient.cpp |
| @@ -41,8 +41,8 @@ |
| } |
| BOOL createProcRes = 0; |
| - // Running inside AppContainer? |
| - if (acs != NULL && acs->TokenAppContainer != NULL) |
| + // Running inside AppContainer or in Windows XP |
| + if ((acs != NULL && acs->TokenAppContainer != NULL) || (!IsWindowsVistaOrLater())) |
|
Felix Dahlke
2014/06/24 12:25:05
Redundant parentheses around |!IsWindowsVistaOrLat
|
| { |
| // We need to break out from AppContainer. Launch with default security - registry entry will eat the user prompt |
| // See http://msdn.microsoft.com/en-us/library/bb250462(v=vs.85).aspx#wpm_elebp |