blob: baa97edb9ae25f6bd9a68baea86bcc07287f51fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
$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,
|