-
Notifications
You must be signed in to change notification settings - Fork 571
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
[PATCH] File::Glob bsd_glob.c dont use "loop" as a goto label #16452
Comments
From @bulk88Created by @bulk88See attached patch. Related to [perl #131211]. Perl Info
|
From @bulk880001-File-Glob-bsd_glob.c-dont-use-loop-as-a-goto-label.patchFrom b8cf39d895ad2ba2aabe79f984d26c686186f017 Mon Sep 17 00:00:00 2001
From: Daniel Dragan <bulk88@hotmail.com>
Date: Tue, 6 Mar 2018 17:27:04 -0500
Subject: [PATCH] File::Glob bsd_glob.c dont use "loop" as a goto label
Using loop as a label conflicts with Perl's "struct loop" and "LOOP" types
and Visual C 2003 in C++ mode (but not the default C build) doesn't like
that. The loop label is from 5.27.1 commit 0db967b2e6
"[perl #131211] fixup File::Glob degenerate matching"
bsd_glob.c(995) : error C2226: syntax error : unexpected type 'loop'
---
ext/File-Glob/bsd_glob.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/ext/File-Glob/bsd_glob.c b/ext/File-Glob/bsd_glob.c
index 4ca3e22..0d042b4 100644
--- a/ext/File-Glob/bsd_glob.c
+++ b/ext/File-Glob/bsd_glob.c
@@ -935,7 +935,7 @@ match(Char *name, Char *pat, Char *patend, int nocase)
Char *nextp = NULL;
Char *nextn = NULL;
- loop:
+ redo:
while (pat < patend) {
c = *pat++;
switch (c & M_MASK) {
@@ -992,7 +992,7 @@ match(Char *name, Char *pat, Char *patend, int nocase)
if (nextn) {
pat = nextp;
name = nextn;
- goto loop;
+ goto redo;
}
return 0;
}
--
1.7.9.msysgit.0
|
The RT System itself - Status changed from 'new' to 'open' |
@tonycoz - Status changed from 'open' to 'pending release' |
From @khwilliamsonThank you for filing this report. You have helped make Perl better. With the release yesterday of Perl 5.28.0, this and 185 other issues have been Perl 5.28.0 may be downloaded via: If you find that the problem persists, feel free to reopen this ticket. |
@khwilliamson - Status changed from 'pending release' to 'resolved' |
Migrated from rt.perl.org#132943 (status was 'resolved')
Searchable as RT132943$
The text was updated successfully, but these errors were encountered: