Message-Id: <199806171815.OAA28929@aatma.engin.umich.edu> To: "Ingo Macherius" cc: Gurusamy Sarathy , perlbug@perl.com, inim@darmstadt.gmd.de Subject: 5.004_67 buglets (Re: IO-stringy-1.{1|2} makes Perl dump core ) In-reply-to: Your message of "Wed, 17 Jun 1998 12:17:20 +0200." <199806171009.MAA04205@sonne.darmstadt.gmd.de> Date: Wed, 17 Jun 1998 14:15:12 -0400 From: Gurusamy Sarathy On Wed, 17 Jun 1998 12:17:20 +0200, "Ingo Macherius" wrote: >Gurusamy Sarathy wrote at 17 Jun 98, 1:17: >> >> Could you please try 5.004_67 and see if it is any better? Thanks. > >Not at all, 5.004_67 does not even compile ... -Dusethreads has a problem, but the default build should be fine. Sorry to have not mentioned that. P5P: I'm sending the attached patch to CPAN as perl5.004_67-bugs.patch to forestall more reports between now and the end of the week. - Sarathy. gsar@engin.umich.edu -----------------------------------8<----------------------------------- Change 1139 by gsar@aatma on 1998/06/17 18:06:16 5.004_67 niggles Affected files ... ... //depot/perl/Makefile.SH#23 edit ... //depot/perl/op.c#63 edit Differences ... ==== //depot/perl/Makefile.SH#23 (text) ==== Index: perl/Makefile.SH --- perl/Makefile.SH.~1~ Wed Jun 17 14:11:18 1998 +++ perl/Makefile.SH Wed Jun 17 14:11:18 1998 @@ -374,7 +374,7 @@ $(LDLIBPTH) ./miniperl minimod.pl > tmp && mv tmp $@ $(plextract): miniperl lib/Config.pm - `echo $(LDLIBPTH) ./miniperl -Ilib $@.PL` + echo $(LDLIBPTH) ./miniperl -Ilib $@.PL install: all install.perl install.man ==== //depot/perl/op.c#63 (text) ==== Index: perl/op.c --- perl/op.c.~1~ Wed Jun 17 14:11:18 1998 +++ perl/op.c Wed Jun 17 14:11:18 1998 @@ -2168,7 +2168,7 @@ #ifdef USE_THREADS if (curop->op_type == OP_THREADSV) { repl_has_vars = 1; - if (strchr("&`'123456789+", curop->op_private)) { + if (strchr("&`'123456789+", curop->op_private)) break; } #else End of Patch.