summaryrefslogtreecommitdiff
path: root/contrib/file
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2008-02-02 07:19:01 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2008-02-02 07:19:01 +0000
commitbbb6d1d6bc67508fc4bad9a88d5d457c29b3bddd (patch)
tree8b63f682d6cf32a7289758aa28152de62cf797ba /contrib/file
parent2d165aedd91e5bb49b2f4588ba032e30027fa661 (diff)
parentc331df4f2324540e80c40ae3b6a2e779a4846d58 (diff)
downloadsrc-test-bbb6d1d6bc67508fc4bad9a88d5d457c29b3bddd.tar.gz
src-test-bbb6d1d6bc67508fc4bad9a88d5d457c29b3bddd.zip
This commit was generated by cvs2svn to compensate for changes in r175882,
which included commits to RCS files with non-trunk default branches.
Notes
Notes: svn path=/head/; revision=175883
Diffstat (limited to 'contrib/file')
-rw-r--r--contrib/file/magic.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/contrib/file/magic.c b/contrib/file/magic.c
index 84d7c95d8bbf4..8fba30bfab1bd 100644
--- a/contrib/file/magic.c
+++ b/contrib/file/magic.c
@@ -218,6 +218,7 @@ close_and_restore(const struct magic_set *ms, const char *name, int fd,
*/
#ifdef HAVE_UTIMES
struct timeval utsbuf[2];
+ memset(utsbuf, 0, sizeof(struct timeval) * 2);
utsbuf[0].tv_sec = sb->st_atime;
utsbuf[1].tv_sec = sb->st_mtime;
@@ -225,6 +226,7 @@ close_and_restore(const struct magic_set *ms, const char *name, int fd,
#elif defined(HAVE_UTIME_H) || defined(HAVE_SYS_UTIME_H)
struct utimbuf utbuf;
+ memset(&utbuf, 0, sizeof(struct utimbuf));
utbuf.actime = sb->st_atime;
utbuf.modtime = sb->st_mtime;
(void) utime(name, &utbuf); /* don't care if loses */