diff options
author | Chet Ramey <chet.ramey@case.edu> | 2011-11-22 19:11:26 -0500 |
---|---|---|
committer | Chet Ramey <chet.ramey@case.edu> | 2011-11-22 19:11:26 -0500 |
commit | 495aee441b75276e38c75694ccb455bb6463fdb9 (patch) | |
tree | f12907dbf62388e6c65dfa1c5e1199509936707e /pcomplib.c | |
parent | 30d188c2932d6ef609d894fefeb7e7b03ccff463 (diff) | |
download | android_external_bash-495aee441b75276e38c75694ccb455bb6463fdb9.tar.gz android_external_bash-495aee441b75276e38c75694ccb455bb6463fdb9.tar.bz2 android_external_bash-495aee441b75276e38c75694ccb455bb6463fdb9.zip |
Bash-4.2 distribution sources and documentation
Diffstat (limited to 'pcomplib.c')
-rw-r--r-- | pcomplib.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -62,6 +62,7 @@ compspec_create () ret->suffix = (char *)NULL; ret->funcname = (char *)NULL; ret->command = (char *)NULL; + ret->lcommand = (char *)NULL; ret->filterpat = (char *)NULL; return ret; @@ -80,6 +81,7 @@ compspec_dispose (cs) FREE (cs->suffix); FREE (cs->funcname); FREE (cs->command); + FREE (cs->lcommand); FREE (cs->filterpat); free (cs); @@ -104,6 +106,7 @@ compspec_copy (cs) new->suffix = STRDUP (cs->suffix); new->funcname = STRDUP (cs->funcname); new->command = STRDUP (cs->command); + new->lcommand = STRDUP (cs->lcommand); new->filterpat = STRDUP (cs->filterpat); return new; |