aboutsummaryrefslogtreecommitdiff
path: root/shell/ash.c
diff options
context:
space:
mode:
Diffstat (limited to 'shell/ash.c')
-rw-r--r--shell/ash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c
index be72e84f6..9678e8092 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -14035,7 +14035,7 @@ SLIST_COPY_END()
14035 */ 14035 */
14036SLIST_SIZE_BEGIN(localvar_size,struct localvar) 14036SLIST_SIZE_BEGIN(localvar_size,struct localvar)
14037var_size(p->vp); 14037var_size(p->vp);
14038funcstringsize += strlen(p->text) + 1; 14038if (p->text) funcstringsize += strlen(p->text) + 1;
14039nodeptrsize += 2; /* p->vp, p->text */ 14039nodeptrsize += 2; /* p->vp, p->text */
14040SLIST_SIZE_END() 14040SLIST_SIZE_END()
14041 14041