This commit is contained in:
DavidXanatos 2024-05-26 10:05:10 +02:00
parent dae35e788e
commit f093649623
3 changed files with 5 additions and 0 deletions

View File

@ -23,6 +23,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- fixed issue with proxy authentication setting
- fixed memory leak in sbiesvc
- fixed issue with inconsistent WFP option application [#3900](https://github.com/sandboxie-plus/Sandboxie/issues/3900)
- fixed resource leak in buffer hashing function

View File

@ -314,9 +314,12 @@ NTSTATUS KphVerifyBuffer(
}
CleanupExit:
if (hash)
ExFreePoolWithTag(hash, 'vhpK');
MyFreeHash(&hashObj);
return status;
}

View File

@ -329,6 +329,7 @@ QList<QVariant> CSbieModel::Sync(const QMap<QString, CSandBoxPtr>& BoxList, cons
{
case eName: Value = pBox->GetName(); break;
case eStatus: Value = pBox.objectCast<CSandBoxPlus>()->GetStatusStr(); break;
case eTitle: Value = pBox->GetDesktop(); break;
case eInfo: Value = pBox.objectCast<CSandBoxPlus>()->IsEmptyCached() ? -2 : (bWatchSize ? pBox.objectCast<CSandBoxPlus>()->GetSize() : 0); break;
case ePath: Value = pBox->GetFileRoot(); break;
}