From: Vadim Zeitlin Date: Tue, 14 Jul 1998 21:59:27 +0000 (+0000) Subject: GetTempFileName used in wxTempFile now instead of tmpnam X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/30a5be975dbda4e27c94de1b67bc0342970f4afc?ds=inline GetTempFileName used in wxTempFile now instead of tmpnam git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@268 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/file.cpp b/src/common/file.cpp index 05e18e8866..d4a0e13551 100644 --- a/src/common/file.cpp +++ b/src/common/file.cpp @@ -29,6 +29,28 @@ // standard #if defined(__WXMSW__) && !defined(__GNUWIN32__) #include + + #define WIN32_LEAN_AND_MEAN + #define NOSERVICE + #define NOIME + #define NOATOM + #define NOGDI + #define NOGDICAPMASKS + #define NOMETAFILE + #define NOMINMAX + #define NOMSG + #define NOOPENFILE + #define NORASTEROPS + #define NOSCROLL + #define NOSOUND + #define NOSYSMETRICS + #define NOTEXTMETRIC + #define NOWH + #define NOCOMM + #define NOKANJI + #define NOCRYPT + #define NOMCX + #include // for GetTempFileName #elif (defined(__UNIX__) || defined(__GNUWIN32__)) #include #else @@ -376,10 +398,15 @@ bool wxTempFile::Open(const wxString& strName) #ifdef __UNIX__ static const char *szMktempSuffix = "XXXXXX"; m_strTemp << strName << szMktempSuffix; - mktemp((char *)m_strTemp.c_str()); // @@@ even if the length doesn't change - //m_strTemp.UngetWriteBuf(); + mktemp((char *)m_strTemp.c_str()); // will do because length doesn't change #else // Windows - m_strTemp = tmpnam(NULL); + wxString strPath; + wxSplitPath(strName, &strPath, NULL, NULL); + if ( strPath.IsEmpty() ) + strPath = '.'; // GetTempFileName will fail if we give it empty string + if ( !GetTempFileName(strPath, "wx_",0, m_strTemp.GetWriteBuf(MAX_PATH)) ) + wxLogLastError("GetTempFileName"); + m_strTemp.UngetWriteBuf(); #endif // Windows/Unix return m_file.Open(m_strTemp, wxFile::write);