diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-10-18 14:03:43 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-10-18 14:03:43 +0000 |
| commit | 6a5c50b05d741b728412c4d5f2ef2258272bb585 (patch) | |
| tree | 653703ddc62ef4506e4f6ebdbd1a3c42114cfe92 /win32 | |
| parent | 5c25eac5a8d0832ea0b8fc1881b5cdd9e4ab5e1e (diff) | |
| download | ruby-6a5c50b05d741b728412c4d5f2ef2258272bb585.tar.gz ruby-6a5c50b05d741b728412c4d5f2ef2258272bb585.tar.xz ruby-6a5c50b05d741b728412c4d5f2ef2258272bb585.zip | |
* win32/win32.c (rb_w32_utime): allow NULL to set the current time.
[ruby-talk:219248]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@11189 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'win32')
| -rw-r--r-- | win32/win32.c | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/win32/win32.c b/win32/win32.c index e8ac1bbf0..0b58c1969 100644 --- a/win32/win32.c +++ b/win32/win32.c @@ -3655,11 +3655,17 @@ rb_w32_utime(const char *path, struct utimbuf *times) return -1; } - if (unixtime_to_filetime(times->actime, &atime)) { - return -1; + if (times) { + if (unixtime_to_filetime(times->actime, &atime)) { + return -1; + } + if (unixtime_to_filetime(times->modtime, &mtime)) { + return -1; + } } - if (unixtime_to_filetime(times->modtime, &mtime)) { - return -1; + else { + GetSystemTimeAsFileTime(&atime); + mtime = atime; } RUBY_CRITICAL({ |
