summaryrefslogtreecommitdiff
path: root/base/gp_unifs.c
diff options
context:
space:
mode:
Diffstat (limited to 'base/gp_unifs.c')
-rw-r--r--base/gp_unifs.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/base/gp_unifs.c b/base/gp_unifs.c
index 75e49a109..e37bcd98a 100644
--- a/base/gp_unifs.c
+++ b/base/gp_unifs.c
@@ -128,10 +128,10 @@ gp_open_scratch_file_impl(const gs_memory_t *mem,
}
}
#else
- /* Coverity thinks that any use of mktemp() is insecure. But if we reach
- here then there is no mkstemp() alternative available, so there's not much
- we can do. So we disable Coverity SECURE_TEMP explicitly. */
- // coverity[SECURE_TEMP]
+ /* Coverity thinks that any use of mktemp() is insecure. But if we
+ reach here then there is no mkstemp() alternative available, so there's
+ not much we can do. Haven't been able to disable this - e.g. '//
+ coverity[SECURE_TEMP]' doesn't have any affect. */
mktemp(fname);
fp = gp_fopentemp(fname, mode);
#endif