-
Notifications
You must be signed in to change notification settings - Fork 559
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not OK: perl v5.6.0 +"v5.6.0-RC1 on os2 2.30 #1269
Comments
From @ysthThis is 5.5.670 patched up through change #5542. [D:\perl\bin]cat hello.cmd [D:\perl\bin]perl -we "qx:hello.cmd:" Abnormal program termination [D:\perl\bin] Perl Info
|
From @gsarOn Sun, 05 Mar 2000 09:05:25 PST, Yitzchak Scott-Thoennes wrote:
Of course, RC1 isn't *really* out yet, but here's a cosmetic fix. Sarathy Inline Patch-----------------------------------8<-----------------------------------
Change 5550 by gsar@auger on 2000/03/05 17:46:18
perlbug tweak to grok local_patches better
Affected files ...
... //depot/perl/utils/perlbug.PL#25 edit
Differences ...
==== //depot/perl/utils/perlbug.PL#25 (text) ====
Index: perl/utils/perlbug.PL
--- perl/utils/perlbug.PL.~1~ Sun Mar 5 09:46:22 2000
+++ perl/utils/perlbug.PL Sun Mar 5 09:46:22 2000
@@ -37,8 +37,8 @@
while (<PATCH_LEVEL>) {
last if /^\s*}/;
chomp;
- s/^\s+,?"?//;
- s/"?,?$//;
+ s/^\s+,?\s*"?//;
+ s/"?\s*,?$//;
s/(['\\])/\\$1/g;
push @patches, $_ unless $_ eq 'NULL';
}
End of Patch. |
From [Unknown Contact. See original ticket]Yitzchak Scott-Thoennes writes:
Can't reproduce it here. Could you set a breakpoint at malloc.c:assert() and give a backtrace? I would do Opening a file is Esc t, breakpoint is F9, Run is Esc r, backtrace is Alt-F1. Ilya |
From @ysthIlya Zakharevich <ilya@math.ohio-state.edu> wrote:
Did you use -DDEBUGGING? It seems to happen only with .cmd files.
Sorry, no sd386. I'll *try* building an a.out perl (I had some |
From @ysthIn article <S6tw4gzkgijK092yn@efn.org>,
Here we go: [D:\perl-5.5.670]type con>hello.cmd [D:\perl-5.5.670]miniperl_ -we "qx:hello.cmd:" Abnormal program termination [D:\perl-5.5.670]gdb miniperl_.exe core |
From [Unknown Contact. See original ticket]On Wed, Mar 08, 2000 at 10:36:51AM -0800, Yitzchak Scott-Thoennes wrote:
Thanks. The following patch should cure this. Yours, Inline Patch--- ./os2/os2.c~ Sun Oct 24 05:51:20 1999
+++ ./os2/os2.c Wed Mar 8 21:36:46 2000
@@ -777,7 +777,7 @@ U32 addflag;
long enough. */
a--;
}
- while (nargs-- >= 0)
+ while (--nargs >= 0)
PL_Argv[nargs] = argsp[nargs];
/* Enable pathless exec if #! (as pdksh). */
pass = (buf[0] == '#' ? 2 : 3); |
Migrated from rt.perl.org#2265 (status was 'resolved')
Searchable as RT2265$
The text was updated successfully, but these errors were encountered: