fix missing symbol bug

This commit is contained in:
taiyu 2015-09-08 09:52:33 -07:00
parent da76ecb5f8
commit fd6d06ff61
1 changed files with 3 additions and 0 deletions

View File

@ -304,6 +304,9 @@ char *do_var_replacement(char *str) {
break;
}
}
if (i == config->symbols->length) {
++find;
}
}
return str;
}