Skip to content

Commit

Permalink
OpenCDM: assert fix (#303)
Browse files Browse the repository at this point in the history
  • Loading branch information
HaseenaSainul authored Jun 27, 2024
1 parent beccb47 commit efa6bba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OpenCDMi/FrameworkRPC.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1350,7 +1350,7 @@ POP_WARNING()
_entryPoint = Core::ServiceType<AccessorOCDM>::Create<Exchange::IAccessorOCDM>(this, config.SharePath.Value(), config.ShareSize.Value());
ASSERT(_entryPoint != nullptr);
_engine = Core::ProxyType<RPC::InvokeServer>::Create(&Core::IWorkerPool::Instance());
ASSERT(_engine != nullptr);
ASSERT(_engine.IsValid() == true);
_service = new ExternalAccess(Core::NodeId(config.Connector.Value().c_str()), _entryPoint, _shell->ProxyStubPath(), _engine);

if (_service != nullptr) {
Expand Down

0 comments on commit efa6bba

Please sign in to comment.