27 lines
843 B
Text
27 lines
843 B
Text
$NetBSD: patch-glkterm_gtfref_c,v 1.2 2013/10/17 16:36:07 roy Exp $
|
|
|
|
Patch out insecure temporary file code that appears to be unreachable.
|
|
|
|
--- glkterm/gtfref.c.orig 2008-03-16 01:07:17.000000000 +0000
|
|
+++ glkterm/gtfref.c
|
|
@@ -99,7 +99,8 @@ frefid_t glk_fileref_create_temp(glui32
|
|
{
|
|
char *filename;
|
|
fileref_t *fref;
|
|
-
|
|
+
|
|
+#if 0 /* insecure */
|
|
/* This is a pretty good way to do this on Unix systems. On Macs,
|
|
it's pretty bad, but this library won't be used on the Mac
|
|
-- I hope. I have no idea about the DOS/Windows world. */
|
|
@@ -113,6 +114,10 @@ frefid_t glk_fileref_create_temp(glui32
|
|
}
|
|
|
|
return fref;
|
|
+#else
|
|
+ gli_strict_warning("fileref_create_temp: operation not allowed.");
|
|
+ return NULL;
|
|
+#endif
|
|
}
|
|
|
|
frefid_t glk_fileref_create_from_fileref(glui32 usage, frefid_t oldfref,
|