Merge pull request #1487 from Naios/v1.x

Fix a build issue when SPDLOG_PREVENT_CHILD_FD is defined
This commit is contained in:
Gabi Melman 2020-03-23 23:18:37 +02:00 committed by GitHub
commit ea89efbed7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -134,7 +134,7 @@ SPDLOG_INLINE bool fopen_s(FILE **fp, const filename_t &filename, const filename
auto file_handle = reinterpret_cast<HANDLE>(_get_osfhandle(::_fileno(*fp)));
if (!::SetHandleInformation(file_handle, HANDLE_FLAG_INHERIT, 0))
{
:fclose(*fp);
::fclose(*fp);
*fp = nullptr;
}
}