summaryrefslogtreecommitdiff
path: root/file.c
diff options
context:
space:
mode:
authoraamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-09-19 09:58:52 +0000
committeraamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-09-19 09:58:52 +0000
commit5363e91dba3d2bd1dffaf8eeff53bc3f0a2a3ce4 (patch)
treea4ba532335ddb0df64835e3517757b85d26ac121 /file.c
parentb24efbebaa17243dcb5070575a91934929b02035 (diff)
* file.c (rb_file_chown): should accept nil. [ruby-dev:27171]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9232 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'file.c')
-rw-r--r--file.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/file.c b/file.c
index 740ec77bda..6302bb8935 100644
--- a/file.c
+++ b/file.c
@@ -1745,8 +1745,8 @@ rb_file_chown(VALUE obj, VALUE owner, VALUE group)
int o, g;
rb_secure(2);
- o = NUM2INT(owner);
- g = NUM2INT(group);
+ o = NIL_P(owner) ? -1 : NUM2INT(owner);
+ g = NIL_P(group) ? -1 : NUM2INT(group);
GetOpenFile(obj, fptr);
#if defined(DJGPP) || defined(__CYGWIN32__) || defined(_WIN32) || defined(__EMX__)
if (!fptr->path) return Qnil;