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 /lib/readline/savestring.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 'lib/readline/savestring.c')
| -rw-r--r-- | lib/readline/savestring.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/readline/savestring.c b/lib/readline/savestring.c index 63f467a..af98538 100644 --- a/lib/readline/savestring.c +++ b/lib/readline/savestring.c @@ -33,5 +33,9 @@ char * savestring (s) const char *s; { - return ((char *)strcpy ((char *)xmalloc (1 + strlen (s)), (s))); + char *ret; + + ret = (char *)xmalloc (strlen (s) + 1); + strcpy (ret, s); + return ret; } |
