diff options
Diffstat (limited to 'expr.c')
-rw-r--r-- | expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -765,7 +765,7 @@ ExprResolveString(ExprDef * expr, int len; char *new; len = strlen(leftRtrn.str) + strlen(rightRtrn.str) + 1; - new = (char *) uAlloc(len); + new = malloc(len); if (new) { snprintf(new, len, "%s%s", leftRtrn.str, rightRtrn.str); |