aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2010-04-14 00:53:26 +0200
committerNguyễn Thái Ngọc Duy <pclouds@gmail.com>2010-09-14 11:04:24 +1000
commitc485f06ab621b87c0501c4c628a697d48addafa8 (patch)
tree5aac1e16f29eb400d7988bdd5f8d68df9d204a0e
parent28db08865aa86f66ac51ad58ca5c2cfdfebe9c0d (diff)
downloadbusybox-w32-c485f06ab621b87c0501c4c628a697d48addafa8.tar.gz
busybox-w32-c485f06ab621b87c0501c4c628a697d48addafa8.tar.bz2
busybox-w32-c485f06ab621b87c0501c4c628a697d48addafa8.zip
win32: ash: struct strlist
-rw-r--r--shell/ash.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/shell/ash.c b/shell/ash.c
index e028d0fcd..28d2f5b9a 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -13351,6 +13351,19 @@ SLIST_COPY_BEGIN(localvar_copy,struct localvar)
13351(*vpp)->vp = var_copy(vp->vp); 13351(*vpp)->vp = var_copy(vp->vp);
13352SAVE_PTR2((*vpp)->vp, (*vpp)->text); 13352SAVE_PTR2((*vpp)->vp, (*vpp)->text);
13353SLIST_COPY_END() 13353SLIST_COPY_END()
13354
13355/*
13356 * struct strlist
13357 */
13358SLIST_SIZE_BEGIN(strlist_size,struct strlist)
13359funcstringsize += strlen(p->text) + 1;
13360nodeptrsize++; /* p->text */
13361SLIST_SIZE_END()
13362
13363SLIST_COPY_BEGIN(strlist_copy,struct strlist)
13364(*vpp)->text = nodeckstrdup(vp->text);
13365SAVE_PTR((*vpp)->text);
13366SLIST_COPY_END()
13354/*- 13367/*-
13355 * Copyright (c) 1989, 1991, 1993, 1994 13368 * Copyright (c) 1989, 1991, 1993, 1994
13356 * The Regents of the University of California. All rights reserved. 13369 * The Regents of the University of California. All rights reserved.