Este sítio funciona melhor com JavaScript.
Página inicial
Ajuda
Iniciar sessão
ben
/
mwparserfromhell
espelho de
https://github.com/earwig/mwparserfromhell
Vigiar
1
Marcar como favorito
1
Derivar
0
Código
Lançamentos
24
Trabalho
Ver a proveniência
Forgot to check numeric/hexadecimal entities for string chars.
tags/v0.2
Ben Kurtovic
há 12 anos
ascendente
a1e6dfcef6
cometimento
0e78571672
1 ficheiros alterados
com
8 adições
e
0 eliminações
Visualização em 2 colunas
Opções das diferenças
Mostrar estatísticas
Descarregar ficheiro patch
Descarregar ficheiro diff
+8
-0
mwparserfromhell/parser/tokenizer.c
+ 8
- 0
mwparserfromhell/parser/tokenizer.c
Ver ficheiro
@@ -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++;
Escrever
Pré-visualizar
Carregando…
Cancelar
Guardar