File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1111
1212
1313
14- ## [ 0.98.4] - 2025-08-??
14+ ## [ 0.98.4] - 2025-08-27
1515
1616### Added
1717- added failsafe mechanisms to the Kernel Isolator driver
Original file line number Diff line number Diff line change @@ -1567,8 +1567,10 @@ STATUS CMajorPrivacy::UnlockDrvConfig()
15671567STATUS CMajorPrivacy::CommitDrvConfig ()
15681568{
15691569 uint32 uConfigStatus = theCore->Driver ()->GetConfigStatus ();
1570- if ((uConfigStatus & CONFIG_STATUS_DIRTY) == 0 ) // nothign changed
1571- return theCore->Driver ()->DiscardConfigChanges (); // to relock the config
1570+ if ((uConfigStatus & CONFIG_STATUS_DIRTY) == 0 ) { // nothign changed
1571+ theCore->Driver ()->DiscardConfigChanges (); // to relock the config
1572+ return OK;
1573+ }
15721574
15731575 if ((uConfigStatus & CONFIG_STATUS_PROTECTED) == 0 )
15741576 return theCore->Driver ()->StoreConfigChanges ();
You can’t perform that action at this time.
0 commit comments