diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-04-14 00:53:26 +0200 |
---|---|---|
committer | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-09-14 11:04:24 +1000 |
commit | c485f06ab621b87c0501c4c628a697d48addafa8 (patch) | |
tree | 5aac1e16f29eb400d7988bdd5f8d68df9d204a0e | |
parent | 28db08865aa86f66ac51ad58ca5c2cfdfebe9c0d (diff) | |
download | busybox-w32-c485f06ab621b87c0501c4c628a697d48addafa8.tar.gz busybox-w32-c485f06ab621b87c0501c4c628a697d48addafa8.tar.bz2 busybox-w32-c485f06ab621b87c0501c4c628a697d48addafa8.zip |
win32: ash: struct strlist
-rw-r--r-- | shell/ash.c | 13 |
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); |
13352 | SAVE_PTR2((*vpp)->vp, (*vpp)->text); | 13352 | SAVE_PTR2((*vpp)->vp, (*vpp)->text); |
13353 | SLIST_COPY_END() | 13353 | SLIST_COPY_END() |
13354 | |||
13355 | /* | ||
13356 | * struct strlist | ||
13357 | */ | ||
13358 | SLIST_SIZE_BEGIN(strlist_size,struct strlist) | ||
13359 | funcstringsize += strlen(p->text) + 1; | ||
13360 | nodeptrsize++; /* p->text */ | ||
13361 | SLIST_SIZE_END() | ||
13362 | |||
13363 | SLIST_COPY_BEGIN(strlist_copy,struct strlist) | ||
13364 | (*vpp)->text = nodeckstrdup(vp->text); | ||
13365 | SAVE_PTR((*vpp)->text); | ||
13366 | SLIST_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. |