1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-31 21:57:12 +00:00
freebsd-ports/devel/libPropList/files/patch-ab
Maxim Sobolev e7d1d4a4a9 Fix a bug in my own tmpnam() --> mkstemp() patch.
Reported by:	Pascal Hofstee <daeron@shadowmere.student.utwente.nl>
2000-06-12 16:10:52 +00:00

54 lines
1.3 KiB
Plaintext

--- filehandling.c.orig Tue Feb 15 03:03:56 2000
+++ filehandling.c Mon Jun 12 19:07:56 2000
@@ -458,13 +458,18 @@
FILE *theFile;
int c;
char *desc = NULL;
+ int fd;
theRealFileName = PLGetString(PLGetFilename(pl));
if(!theRealFileName) return NO;
if (atomically)
{
+#ifndef HAVE_MKSTEMP
theFileName = tmpnam(NULL);
+#else
+ theFileName = "/var/tmp/tmp.XXXXXX";
+#endif
strcpy(tmp_fileName, theFileName);
if((tmp_basename=strtok(tmp_fileName, "/")))
@@ -492,14 +497,31 @@
}
theFileName = strcat(dirname, basename);
+#ifdef HAVE_MKSTEMP
+ strcpy(tmp_fileName, theFileName);
+ if ((fd = mkstemp(tmp_fileName)) == -1)
+
+ goto failure; /* Not reached */
+
+ if ((theFile = fdopen(fd, "w+")) == NULL)
+
+ goto failure; /* Not reached */
+
+ theFileName = tmp_fileName;
+#endif
}
else
{
theFileName = theRealFileName;
+#ifdef HAVE_MKSTEMP
+ theFile = fopen(theFileName, "w");
+#endif /* HAVE_MKSTEMP */
}
/* Open the file (whether temp or real) for writing. */
+#ifndef HAVE_MKSTEMP
theFile = fopen(theFileName, "w");
+#endif /* ! HAVE_MKSTEMP */
if (theFile == NULL) /* Something went wrong; we weren't
* even able to open the file. */