| 24531:76e72697f7d6 | 24547:e3be19b1b3e5 |
|---|---|
| 1972 if (!t->values) | 1972 if (!t->values) |
| 1973 return; | 1973 return; |
| 1974 | 1974 |
| 1975 pos = strchr (t->values->str, *x); | 1975 pos = strchr (t->values->str, *x); |
| 1976 if (pos) | 1976 if (pos) |
| 1977 t = t->children [(unsigned int) pos - (unsigned int) t->values->str]; | 1977 t = t->children [pos - t->values->str]; |
| 1978 else | 1978 else |
| 1979 return; | 1979 return; |
| 1980 | 1980 |
| 1981 x++; len++; | 1981 x++; len++; |
| 1982 } | 1982 } |