X-Git-Url: https://jxself.org/git/?p=carl9170fw.git;a=blobdiff_plain;f=config%2Fsymbol.c;h=08d4401e646d8b043f1385cb81637ce66ea0184f;hp=b664d6ed515ffe27e4a805734a5f51d839078da4;hb=26f53e834095e19dfc7cf18b2683c618d98bd9e7;hpb=a423328607a8dfbf84e3b92cbde918a8bd7a8c8d diff --git a/config/symbol.c b/config/symbol.c index b664d6e..08d4401 100644 --- a/config/symbol.c +++ b/config/symbol.c @@ -1010,7 +1010,7 @@ struct symbol **sym_re_search(const char *pattern) continue; if (regexec(&re, sym->name, 1, match, 0)) continue; - if (cnt + 1 >= size) { + if (cnt >= size) { void *tmp; size += 16; tmp = realloc(sym_match_arr, size * sizeof(struct sym_match *));