summaryrefslogtreecommitdiff
path: root/file.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-11-14 14:52:55 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-11-14 14:52:55 +0000
commitb750e49434834b04735987a48d2f3b68d9e55ef5 (patch)
tree03297ce8bb5422827be37b9b9906012730c98aa0 /file.c
parent5028ce7133a9fd9ff20b30bcddb76f385168932b (diff)
* file.c (rb_file_s_readlink): ERANGE will occur only on GPFS.
[ruby-dev:27699] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@9537 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'file.c')
-rw-r--r--file.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/file.c b/file.c
index decb5ba81e..8db72a089a 100644
--- a/file.c
+++ b/file.c
@@ -2051,13 +2051,11 @@ rb_file_s_readlink(klass, path)
SafeStringValue(path);
buf = xmalloc(size);
- for (;;) {
- rv = readlink(RSTRING(path)->ptr, buf, size);
-#ifndef _AIX
- if (rv != size) break;
-#else
- if (rv > 0 || errno != ERANGE) break;
+ while ((rv = readlink(RSTRING(path)->ptr, buf, size)) == size
+#ifdef _AIX
+ || (rv < 0 && errno == ERANGE) /* quirky behavior of GPFS */
#endif
+ ) {
size *= 2;
buf = xrealloc(buf, size);
}