Update UnitTestFileGenerator.h

kimkulling/add_windows_clang_issue-5519
Kim Kulling 2024-04-09 19:13:25 +01:00 committed by GitHub
parent efc046752c
commit ecd144b63e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 3 deletions

View File

@ -54,14 +54,15 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#include <io.h>
inline FILE* MakeTmpFile(char* tmplate)
{
auto pathtemplate = _mktemp(tmplate);
auto pathtemplate = _mktemp_s(tmplate, std::strlen(tmplate));
EXPECT_NE(pathtemplate, nullptr);
if(pathtemplate == nullptr)
{
return nullptr;
}
auto* fs = std::fopen(pathtemplate, "w+");
EXPECT_NE(fs, nullptr);
FILE *fs = nullptr;
auto err = fopen_s(&fs, pathtemplate, "w+");
EXPECT_EQ(err, 0);
return fs;
}
#elif defined(__GNUC__) || defined(__clang__)