1
0
mirror of git://projects.qi-hardware.com/eda-tools.git synced 2024-09-28 23:24:10 +03:00

b2/subex.c (compose): use stralloc_n instead of open-coding its functionality

This commit is contained in:
Werner Almesberger 2012-05-23 14:18:02 -03:00
parent 78bcb8d3de
commit db279b7920

View File

@ -92,7 +92,7 @@ static char *compose(const struct chunk *c,
const char *s, const regmatch_t *match, const char *units)
{
char *res = stralloc("");
int res_len = 0, len;
int res_len = 0;
const char *val;
char *tmp, *tmp2;
int n;
@ -118,10 +118,8 @@ static char *compose(const struct chunk *c,
}
if (match[n].rm_so == -1)
break;
len = match[n].rm_eo-match[n].rm_so;
tmp = alloc_size(len);
memcpy(tmp, s+match[n].rm_so, len);
tmp[len] = 0;
tmp = stralloc_n(s+match[n].rm_so,
match[n].rm_eo-match[n].rm_so);
tmp2 = canonicalize(tmp, units ? units[n-1] : 0);
append(&res, &res_len, tmp2);
free(tmp);