2016-04-18 15:32:24 +02:00
|
|
|
---
|
|
|
|
src/apprentice.c | 6 +++---
|
|
|
|
src/compress.c | 2 +-
|
|
|
|
src/file.c | 2 +-
|
|
|
|
src/magic.c | 2 +-
|
|
|
|
4 files changed, 6 insertions(+), 6 deletions(-)
|
|
|
|
|
2013-09-30 16:29:55 +02:00
|
|
|
--- src/apprentice.c
|
2016-08-16 14:02:27 +02:00
|
|
|
+++ src/apprentice.c 2016-08-16 11:47:57.766941986 +0000
|
2016-04-18 15:32:24 +02:00
|
|
|
@@ -1106,7 +1106,7 @@ load_1(struct magic_set *ms, int action,
|
2011-11-05 21:03:46 +01:00
|
|
|
ssize_t len;
|
2013-01-22 17:19:33 +01:00
|
|
|
struct magic_entry me;
|
2011-11-05 21:03:46 +01:00
|
|
|
|
|
|
|
- FILE *f = fopen(ms->file = fn, "r");
|
|
|
|
+ FILE *f = fopen(ms->file = fn, "re");
|
|
|
|
if (f == NULL) {
|
|
|
|
if (errno != ENOENT)
|
|
|
|
file_error(ms, errno, "cannot read magic file `%s'",
|
2016-04-18 15:32:24 +02:00
|
|
|
@@ -2950,7 +2950,7 @@ apprentice_map(struct magic_set *ms, con
|
2011-11-05 21:03:46 +01:00
|
|
|
if (dbname == NULL)
|
2013-01-22 17:19:33 +01:00
|
|
|
goto error;
|
2011-11-05 21:03:46 +01:00
|
|
|
|
|
|
|
- if ((fd = open(dbname, O_RDONLY|O_BINARY)) == -1)
|
|
|
|
+ if ((fd = open(dbname, O_RDONLY|O_BINARY|O_CLOEXEC)) == -1)
|
2013-01-22 17:19:33 +01:00
|
|
|
goto error;
|
2011-11-05 21:03:46 +01:00
|
|
|
|
|
|
|
if (fstat(fd, &st) == -1) {
|
2016-04-18 15:32:24 +02:00
|
|
|
@@ -3085,7 +3085,7 @@ apprentice_compile(struct magic_set *ms,
|
2011-11-05 21:03:46 +01:00
|
|
|
if (dbname == NULL)
|
|
|
|
goto out;
|
|
|
|
|
2013-01-22 17:19:33 +01:00
|
|
|
- if ((fd = open(dbname, O_WRONLY|O_CREAT|O_TRUNC|O_BINARY, 0644)) == -1)
|
|
|
|
+ if ((fd = open(dbname, O_WRONLY|O_CREAT|O_TRUNC|O_BINARY|O_CLOEXEC, 0644)) == -1)
|
|
|
|
{
|
2011-11-05 21:03:46 +01:00
|
|
|
file_error(ms, errno, "cannot open `%s'", dbname);
|
|
|
|
goto out;
|
2013-09-30 16:29:55 +02:00
|
|
|
--- src/compress.c
|
2016-08-16 14:02:27 +02:00
|
|
|
+++ src/compress.c 2016-08-16 11:47:57.766941986 +0000
|
|
|
|
@@ -389,7 +389,7 @@ file_pipe2file(struct magic_set *ms, int
|
2013-01-22 17:19:33 +01:00
|
|
|
#else
|
|
|
|
{
|
|
|
|
int te;
|
|
|
|
- tfd = mkstemp(buf);
|
|
|
|
+ tfd = mkostemp(buf, O_CLOEXEC);
|
|
|
|
te = errno;
|
|
|
|
(void)unlink(buf);
|
|
|
|
errno = te;
|
2013-09-30 16:29:55 +02:00
|
|
|
--- src/file.c
|
2016-08-16 14:02:27 +02:00
|
|
|
+++ src/file.c 2016-08-16 11:47:57.766941986 +0000
|
|
|
|
@@ -467,7 +467,7 @@ unwrap(struct magic_set *ms, const char
|
2011-11-05 21:03:46 +01:00
|
|
|
f = stdin;
|
|
|
|
wid = 1;
|
|
|
|
} else {
|
|
|
|
- if ((f = fopen(fn, "r")) == NULL) {
|
|
|
|
+ if ((f = fopen(fn, "re")) == NULL) {
|
|
|
|
(void)fprintf(stderr, "%s: Cannot open `%s' (%s).\n",
|
|
|
|
progname, fn, strerror(errno));
|
|
|
|
return 1;
|
2013-09-30 16:29:55 +02:00
|
|
|
--- src/magic.c
|
2016-08-16 14:02:27 +02:00
|
|
|
+++ src/magic.c 2016-08-16 11:47:57.766941986 +0000
|
2016-04-18 15:32:24 +02:00
|
|
|
@@ -442,7 +442,7 @@ file_or_fd(struct magic_set *ms, const c
|
2013-09-30 16:29:55 +02:00
|
|
|
else
|
|
|
|
pos = lseek(fd, (off_t)0, SEEK_CUR);
|
2013-01-22 17:19:33 +01:00
|
|
|
} else {
|
|
|
|
- int flags = O_RDONLY|O_BINARY;
|
|
|
|
+ int flags = O_RDONLY|O_BINARY|O_CLOEXEC;
|
2013-12-02 12:33:34 +01:00
|
|
|
int okstat = stat(inname, &sb) == 0;
|
2013-01-22 17:19:33 +01:00
|
|
|
|
2013-12-02 12:33:34 +01:00
|
|
|
if (okstat && S_ISFIFO(sb.st_mode)) {
|