mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 14:51:46 +00:00
- removed some debug stuff from tmpfileplus.
This commit is contained in:
parent
4ca3acb0e3
commit
e78503b770
1 changed files with 0 additions and 11 deletions
|
@ -113,13 +113,6 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
/* DEBUGGING STUFF */
|
|
||||||
#if defined(_DEBUG) && defined(SHOW_DPRINTF)
|
|
||||||
#define DPRINTF1(s, a1) printf(s, a1)
|
|
||||||
#else
|
|
||||||
#define DPRINTF1(s, a1)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
#define FILE_SEPARATOR "\\"
|
#define FILE_SEPARATOR "\\"
|
||||||
|
@ -216,7 +209,6 @@ static FILE *mktempfile_internal(const char *tmpdir, const char *pfx, char **tmp
|
||||||
}
|
}
|
||||||
|
|
||||||
lentempname = strlen(tmpdir) + strlen(FILE_SEPARATOR) + strlen(pfx) + strlen(randpart);
|
lentempname = strlen(tmpdir) + strlen(FILE_SEPARATOR) + strlen(pfx) + strlen(randpart);
|
||||||
DPRINTF1("lentempname=%d\n", lentempname);
|
|
||||||
tmpname = (char*)malloc(lentempname + 1);
|
tmpname = (char*)malloc(lentempname + 1);
|
||||||
if (!tmpname)
|
if (!tmpname)
|
||||||
{
|
{
|
||||||
|
@ -227,11 +219,9 @@ static FILE *mktempfile_internal(const char *tmpdir, const char *pfx, char **tmp
|
||||||
for (i = 0; i < 10; i++)
|
for (i = 0; i < 10; i++)
|
||||||
{
|
{
|
||||||
sprintf(tmpname, "%s%s%s%s", tmpdir, FILE_SEPARATOR, pfx, set_randpart(randpart));
|
sprintf(tmpname, "%s%s%s%s", tmpdir, FILE_SEPARATOR, pfx, set_randpart(randpart));
|
||||||
DPRINTF1("[%s]\n", tmpname);
|
|
||||||
fd = OPEN_(tmpname, oflag, pmode);
|
fd = OPEN_(tmpname, oflag, pmode);
|
||||||
if (fd != -1) break;
|
if (fd != -1) break;
|
||||||
}
|
}
|
||||||
DPRINTF1("strlen(tmpname)=%d\n", strlen(tmpname));
|
|
||||||
if (fd != -1)
|
if (fd != -1)
|
||||||
{ /* Success, so return user a proper ANSI C file pointer */
|
{ /* Success, so return user a proper ANSI C file pointer */
|
||||||
fp = FDOPEN_(fd, "w+b");
|
fp = FDOPEN_(fd, "w+b");
|
||||||
|
@ -293,7 +283,6 @@ FILE *tmpfileplus(const char *dir, const char *prefix, char **pathname, int keep
|
||||||
for (i = 0; i < ntempdirs; i++)
|
for (i = 0; i < ntempdirs; i++)
|
||||||
{
|
{
|
||||||
tmpdir = tempdirs[i];
|
tmpdir = tempdirs[i];
|
||||||
DPRINTF1("Trying tmpdir=[%s]\n", tmpdir);
|
|
||||||
fp = mktempfile_internal(tmpdir, pfx, &tmpname, keep);
|
fp = mktempfile_internal(tmpdir, pfx, &tmpname, keep);
|
||||||
if (fp) break;
|
if (fp) break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue