aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/c/lacweb.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/c/lacweb.c')
-rw-r--r--src/c/lacweb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/c/lacweb.c b/src/c/lacweb.c
index e7cb381a..3d79e1a3 100644
--- a/src/c/lacweb.c
+++ b/src/c/lacweb.c
@@ -471,11 +471,11 @@ lw_Basis_string lw_Basis_unurlifyString(lw_context ctx, char **s) {
char *r, *s1, *s2;
int len, n;
- len = strlen(new_s);
+ len = strlen(*s);
lw_check_heap(ctx, len + 1);
r = ctx->heap_front;
- ctx->heap_front = lw_unurlifyString_to(ctx, ctx->heap_front, new_s);
+ ctx->heap_front = lw_unurlifyString_to(ctx, ctx->heap_front, *s);
*s = new_s;
return r;
}