diff options
| author | Paul Eggert | 2017-04-27 15:21:34 -0700 |
|---|---|---|
| committer | Paul Eggert | 2017-04-27 15:24:07 -0700 |
| commit | abd769131dae3f9693faff9a080267e86936ce99 (patch) | |
| tree | 316cc01ca8f7e8917bf28ff50c5719f8dff02c2c /lib/stat-time.h | |
| parent | 2a23577795f8b644a215fae68e990c07f0146d33 (diff) | |
| download | emacs-abd769131dae3f9693faff9a080267e86936ce99.tar.gz emacs-abd769131dae3f9693faff9a080267e86936ce99.zip | |
Merge from gnulib
This incorporates:
2017-04-24 time_rz: fix heap buffer overflow vulnerability
2017-04-23 stat-time: Update comments.
2017-04-22 ftoastr: cite a newer paper
2017-04-21 gettext-h: Avoid -Wundef warning.
* lib/ftoastr.c, lib/gettext.h, lib/stat-time.h, lib/time_rz.c:
* m4/getopt.m4: Copy from gnulib.
* m4/gnulib-comp.m4: Regenerate.
Diffstat (limited to 'lib/stat-time.h')
| -rw-r--r-- | lib/stat-time.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/stat-time.h b/lib/stat-time.h index 47469892ee2..154d62a01f5 100644 --- a/lib/stat-time.h +++ b/lib/stat-time.h | |||
| @@ -169,7 +169,7 @@ get_stat_birthtime (struct stat const *st) | |||
| 169 | #elif (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ | 169 | #elif (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ |
| 170 | /* Native Windows platforms (but not Cygwin) put the "file creation | 170 | /* Native Windows platforms (but not Cygwin) put the "file creation |
| 171 | time" in st_ctime (!). See | 171 | time" in st_ctime (!). See |
| 172 | <http://msdn2.microsoft.com/de-de/library/14h5k7ff(VS.80).aspx>. */ | 172 | <https://msdn.microsoft.com/en-us/library/14h5k7ff(VS.80).aspx>. */ |
| 173 | t.tv_sec = st->st_ctime; | 173 | t.tv_sec = st->st_ctime; |
| 174 | t.tv_nsec = 0; | 174 | t.tv_nsec = 0; |
| 175 | #else | 175 | #else |