Skip to content
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

Fix promises at EOF #4097

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open

Fix promises at EOF #4097

wants to merge 4 commits into from

Commits on Oct 8, 2024

  1. Configuration menu
    Copy the full SHA
    6f30ce2 View commit details
    Browse the repository at this point in the history
  2. read: Fix getInputLineOffset() at EOF

    The previous computation could result in invalid values, which could
    lead to invalid promise ranges and subsequent crashes.
    b4n committed Oct 8, 2024
    Configuration menu
    Copy the full SHA
    fcab90a View commit details
    Browse the repository at this point in the history
  3. php: Fix HTML promises ranges

    Don't include (part of) the PHP open tag in the HTML input.
    b4n committed Oct 8, 2024
    Configuration menu
    Copy the full SHA
    ace859a View commit details
    Browse the repository at this point in the history

Commits on Nov 11, 2024

  1. html: Avoid infinite ping-pong loop with JSP tags

    JSP tags shouldn't trigger the PHP parser.  This used to happen and
    trigger an infinite loop of a ping-pong effect with the HTML parser
    asking the PHP parser to parse the JSP block, and the PHP parser, not
    recognizing the input, asking the HTML one to deal with it.  Rinse and
    repeat.
    b4n committed Nov 11, 2024
    Configuration menu
    Copy the full SHA
    039e589 View commit details
    Browse the repository at this point in the history