This commit is contained in:
DavidXanatos 2024-03-09 13:08:14 +01:00
parent 1651527fe2
commit cb7b7185cd
2 changed files with 2 additions and 1 deletions

View File

@ -10,6 +10,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- fixed issues with "IsProtectScreen=y" [3656](https://github.com/sandboxie-plus/Sandboxie/pull/3656#discussion_r1518549704)
- fixed issue with hotkeys and changed default suspend all hotkey to Shift+Alt+Pause
- fixed issue with suspended state not being updated when the global hotkey was used
- fixed issue with new ** pattern failing in some cases

View File

@ -641,9 +641,9 @@ _FX const WCHAR *Pattern_wcsnstr_ex(
if (i == nlen)
return hstr;
}
++hstr;
if (no_bs && *hstr == L'\\')
break;
++hstr;
}
return NULL;
}