From 57e9892e8282d6ce90ca3665dc323a7203ae19da Mon Sep 17 00:00:00 2001 From: usa Date: Tue, 28 Oct 2008 15:27:06 +0000 Subject: * win32/win32.c (rb_w32_open): need to seek to the end of the file when O_APPEND is specified. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20008 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- win32/win32.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'win32') diff --git a/win32/win32.c b/win32/win32.c index 13642afa2..b70a6d7fa 100644 --- a/win32/win32.c +++ b/win32/win32.c @@ -4129,8 +4129,10 @@ rb_w32_open(const char *file, int oflag, ...) fd = -1; goto quit; } - if (!(flags & (FDEV | FPIPE)) && (oflag & O_APPEND)) + if (!(flags & (FDEV | FPIPE)) && (oflag & O_APPEND)) { flags |= FAPPEND; + SetFilePointer(h, 0, NULL, FILE_END); + } _set_osfhnd(fd, (long)h); _osfile(fd) = flags | FOPEN; -- cgit