| Index: third_party/libxml/src/testAutomata.c
|
| diff --git a/third_party/libxml/src/testAutomata.c b/third_party/libxml/src/testAutomata.c
|
| index 2f575ce55d619c9408c360a1d8f69d1f21eb2e83..6c4de9002e4c53d5954a8e833f82737f321bccd9 100644
|
| --- a/third_party/libxml/src/testAutomata.c
|
| +++ b/third_party/libxml/src/testAutomata.c
|
| @@ -70,10 +70,10 @@ testRegexpFile(const char *filename) {
|
| continue;
|
| len = strlen(expr);
|
| len--;
|
| - while ((len >= 0) &&
|
| + while ((len >= 0) &&
|
| ((expr[len] == '\n') || (expr[len] == '\t') ||
|
| (expr[len] == '\r') || (expr[len] == ' '))) len--;
|
| - expr[len + 1] = 0;
|
| + expr[len + 1] = 0;
|
| if (len >= 0) {
|
| if ((am != NULL) && (expr[0] == 't') && (expr[1] == ' ')) {
|
| char *ptr = &expr[2];
|
|
|