Skip to content

Commit

Permalink
Merge branch 'Lastique-fix_mingw_compile_error' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
igaztanaga committed Jun 11, 2020
2 parents f2ecdc7 + b89b22c commit c604a4b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/boost/interprocess/detail/win32_api.hpp
Expand Up @@ -716,14 +716,14 @@ class interprocess_all_access_security
interprocess_all_access_security()
: initialized(false)
{
if(!InitializeSecurityDescriptor(&sd, security_descriptor_revision))
if(!boost::winapi::InitializeSecurityDescriptor(&sd, security_descriptor_revision))
return;
if(!::SetSecurityDescriptorDacl(&sd, true, 0, false))
if(!boost::winapi::SetSecurityDescriptorDacl(&sd, true, 0, false))
return;
sa.lpSecurityDescriptor = &sd;
sa.nLength = sizeof(interprocess_security_attributes);
sa.bInheritHandle = false;
initialized = false;
initialized = true;
}
interprocess_security_attributes *get_attributes()
Expand Down

0 comments on commit c604a4b

Please sign in to comment.