-
Notifications
You must be signed in to change notification settings - Fork 9
Closed
Labels
bugSomething isn't workingSomething isn't working
Milestone
Description
What happens?
Bug fix needed for security and query in grammar:
<ws> ::= ( " " | "\t" | "\r" | "\n" )+
<idShortPath> ::= ( <idShort> ("[" ( [0-9]* ) "]" ) ( "." <idShortPath> )* )
Why is this wrong?
No space etc. should be allowed as well.
How should it be fixed?
<ws> ::= ( " " | "\t" | "\r" | "\n" )*
<idShortPath> ::= ( <idShort> ("[" ( [0-9]* ) "]" )* ( "." <idShortPath> )* )
- I have signed the required Developer Certificate of Origin (DCO) already.
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working