summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-03-25 08:21:01 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-03-25 08:21:01 +0000
commit3622855a000cd07d570b139e941a76dfeea59078 (patch)
treecd65553aa0aec2860ccf2bb4b4f64e116a22f5dd
parent6cdedd2f6a8c7ee1887d3338658cbcd3d9909341 (diff)
downloadruby-3622855a000cd07d570b139e941a76dfeea59078.tar.gz
ruby-3622855a000cd07d570b139e941a76dfeea59078.tar.xz
ruby-3622855a000cd07d570b139e941a76dfeea59078.zip
* dir.c (rb_push_glob): local variable 'maxnest' was
uninitialized. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2273 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--dir.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index c7c0628e0..7932105e6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Mon Mar 25 17:18:48 2002 Nobuyoshi Nakada <nobu.nakada@nifty.ne.jp>
+
+ * dir.c (rb_push_glob): local variable 'maxnest' was
+ uninitialized.
+
Mon Mar 25 13:24:20 2002 Yukihiro Matsumoto <matz@ruby-lang.org>
* ext/socket/socket.c (bsock_do_not_rev_lookup_set): should not be
diff --git a/dir.c b/dir.c
index 2e728adda..8589b7801 100644
--- a/dir.c
+++ b/dir.c
@@ -909,7 +909,7 @@ rb_push_glob(str, flags)
char *p, *pend;
char *buf;
char *t;
- int nest, maxnest;
+ int nest, maxnest = 0;
int noescape = flags & FNM_NOESCAPE;
VALUE ary;