[前][次][番号順一覧][スレッド一覧]

ruby-changes:52637

From: ko1 <ko1@a...>
Date: Wed, 26 Sep 2018 11:23:27 +0900 (JST)
Subject: [ruby-changes:52637] ko1:r64849 (trunk): fix "initialize miss".

ko1	2018-09-26 11:23:21 +0900 (Wed, 26 Sep 2018)

  New Revision: 64849

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=64849

  Log:
    fix "initialize miss".
    
    * dir.c (glob_helper): initialize `args.pathtype`.
      missed at r64810.

  Modified files:
    trunk/dir.c
Index: dir.c
===================================================================
--- dir.c	(revision 64848)
+++ dir.c	(revision 64849)
@@ -2150,6 +2150,7 @@ glob_helper( https://github.com/ruby/ruby/blob/trunk/dir.c#L2150
 	args.baselen = baselen;
 	args.namelen = namelen;
 	args.dirsep = dirsep;
+	args.pathtype = pathtype;
 	args.flags = flags;
 	args.funcs = funcs;
 	args.arg = arg;

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]