From 28db08865aa86f66ac51ad58ca5c2cfdfebe9c0d Mon Sep 17 00:00:00 2001 From: Nguyễn Thái Ngọc Duy Date: Wed, 14 Apr 2010 00:53:03 +0200 Subject: win32: ash: struct localvar --- shell/ash.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/shell/ash.c b/shell/ash.c index fa4410749..e028d0fcd 100644 --- a/shell/ash.c +++ b/shell/ash.c @@ -13335,6 +13335,22 @@ SLIST_COPY_BEGIN(var_copy,struct var) (*vpp)->func = NULL; SAVE_PTR((*vpp)->text); SLIST_COPY_END() + +/* + * struct localvar + */ +SLIST_SIZE_BEGIN(localvar_size,struct localvar) +var_size(p->vp); +funcstringsize += strlen(p->text) + 1; +nodeptrsize += 2; /* p->vp, p->text */ +SLIST_SIZE_END() + +SLIST_COPY_BEGIN(localvar_copy,struct localvar) +(*vpp)->text = nodeckstrdup(vp->text); +(*vpp)->flags = vp->flags; +(*vpp)->vp = var_copy(vp->vp); +SAVE_PTR2((*vpp)->vp, (*vpp)->text); +SLIST_COPY_END() /*- * Copyright (c) 1989, 1991, 1993, 1994 * The Regents of the University of California. All rights reserved. -- cgit v1.2.3-55-g6feb