Uploaded image for project: 'Pegasus'
  1. Pegasus
  2. PM-1927

kickstart fails to filter out some UTF-8 non-printable characters

XMLWordPrintable

    • Type: Icon: Bug Bug
    • Resolution: Fixed
    • Priority: Icon: Major Major
    • master, 5.1.0, 5.0.7
    • Affects Version/s: master, 5.0.6
    • Component/s: None
    • None

      kickstart has a bug which means some non-printable UTF-8 characters are allowed through. The problem is typo in the logic in utils.c:

      (c <= 0xE000 && c >= 0xFFFD)

      That should be:

      (c >= 0xE000 && c <= 0xFFFD)

            Assignee:
            rynge Mats Rynge
            Reporter:
            rynge Mats Rynge
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved: