Projects
home:Eustace:branches:Eulaceura:Factory
perl-XML-SAX
_service:obs_scm:perl-XML-SAX-0.99-rt20126.patch
Sign Up
Log In
Username
Password
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File _service:obs_scm:perl-XML-SAX-0.99-rt20126.patch of Package perl-XML-SAX
diff --git a/lib/XML/SAX/PurePerl.pm b/lib/XML/SAX/PurePerl.pm --- a/lib/XML/SAX/PurePerl.pm 2006-04-24 01:20:09.000000000 +0200 +++ b/lib/XML/SAX/PurePerl.pm 2012-08-09 12:47:48.736728516 +0200 @@ -595,22 +595,23 @@ sub Comment { my $data = $reader->data(4); if ($data =~ /^<!--/) { - $reader->move_along(4); + $reader->move_along(4); # skip comment start + $data = $reader->data; + while ($data !~ m!-->!) { + my $n = $reader->read_more; + $self->parser_error("End of data seen while looking for close comment marker", $reader) + unless $n; + $data = $reader->data; + } + my $comment_str = ''; - while (1) { - my $data = $reader->data; - $self->parser_error("End of data seen while looking for close comment marker", $reader) - unless length($data); - if ($data =~ /^(.*?)-->/s) { - $comment_str .= $1; - $self->parser_error("Invalid comment (dash)", $reader) if $comment_str =~ /-$/; - $reader->move_along(length($1) + 3); - last; - } - else { - $comment_str .= $data; - $reader->move_along(length($data)); - } + if ($data =~ /^(.*?)-->/s) { + $comment_str = $1; + $self->parser_error("Invalid comment (dash)", $reader) if $comment_str =~ /-$/; + $reader->move_along(length($1) + 3); + } + else { + return 0; } $self->comment({ Data => $comment_str });
Locations
Projects
Search
Status Monitor
Help
Open Build Service
OBS Manuals
API Documentation
OBS Portal
Reporting a Bug
Contact
Mailing List
Forums
Chat (IRC)
Twitter
Open Build Service (OBS)
is an
openSUSE project
.
浙ICP备2022010568号-2