Skip to content

Commit

Permalink
iox-eclipse-iceoryx#1104 Fix dereferencing issue in acl
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Eltzschig <[email protected]>
  • Loading branch information
elfenpiff committed Sep 22, 2022
1 parent 5b1ce9d commit 187588a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iceoryx_hoofs/source/posix_wrapper/access_control.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ AccessController::createACL(const int32_t numEntries) noexcept
cxx::Ensures(!aclFreeCall.has_error() && "Could not free ACL memory");
};

return cxx::success<smartAclPointer_t>(*aclInitCall->value, freeACL);
return cxx::success<smartAclPointer_t>(aclInitCall->value, freeACL);
}

bool AccessController::addUserPermission(const Permission permission, const PosixUser::userName_t& name) noexcept
Expand Down

0 comments on commit 187588a

Please sign in to comment.