Ce site fonctionne mieux avec JavaScript.
Accueil
Aide
Connexion
ben
/
mwparserfromhell
miroir de
https://github.com/earwig/mwparserfromhell
Suivre
1
Ajouter aux favoris
1
Bifurcation
0
Code
Versions
24
Activité
Parcourir la source
Forgot to check numeric/hexadecimal entities for string chars.
tags/v0.2
Ben Kurtovic
il y a 12 ans
Parent
a1e6dfcef6
révision
0e78571672
1 fichiers modifiés
avec
8 ajouts
et
0 suppressions
Vue séparée
Option de Diff
Voir les Statistiques
Télécharger le Fichier Patch
Télécharger le Fichier des Différences
+8
-0
mwparserfromhell/parser/tokenizer.c
+ 8
- 0
mwparserfromhell/parser/tokenizer.c
Voir le fichier
@@ -1045,6 +1045,14 @@ Tokenizer_really_parse_entity(Tokenizer* self)
if (this == *MARKERS[j])
FAIL_ROUTE_AND_EXIT()
}
j = 0;
while (1) {
if (!valid[j])
FAIL_ROUTE_AND_EXIT()
if (this == valid[j])
break;
j++;
}
text[i] = this;
self->head++;
i++;
Écrire
Aperçu
Chargement…
Annuler
Enregistrer