rejectedsoftware / diet-ng

Compile-time indentation based, XML structured template system
MIT License
44 stars 24 forks source link

diet parser has out-of-bounds error #75

Closed schveiguy closed 4 years ago

schveiguy commented 4 years ago

Out of bounds error here:

https://github.com/rejectedsoftware/diet-ng/blob/36cf576a2baab861b3992e01bbf70389f2e0bf63/source/diet/parser.d#L705

Trigged by forgetting to finish a line! for example:

a(href="../",onclick

Easy fix, just check in the outer if statement that i is still less than str.length.

I'll do a PR when I get a chance.