summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuli Mallett <jmallett@FreeBSD.org>2002-05-30 19:24:08 +0000
committerJuli Mallett <jmallett@FreeBSD.org>2002-05-30 19:24:08 +0000
commit986d829b8fa29b653a40f382466c0b16ffdc63cd (patch)
treedf726809038b1efa6830d02f8e969569b2cba5a9
parente9217a0b8a4909edd200b0f3d6b317193ee03d72 (diff)
Notes
-rw-r--r--usr.bin/xargs/strnsubst.c5
-rw-r--r--usr.bin/xargs/xargs.c6
2 files changed, 8 insertions, 3 deletions
diff --git a/usr.bin/xargs/strnsubst.c b/usr.bin/xargs/strnsubst.c
index 5ca2773fded7..b6668b7071b3 100644
--- a/usr.bin/xargs/strnsubst.c
+++ b/usr.bin/xargs/strnsubst.c
@@ -24,6 +24,8 @@ void strnsubst(char **, const char *, const char *, size_t);
* maxsize bytes large. It does not free the string pointed to by str, it
* is up to the calling program to be sure that the original contents of
* str as well as the new contents are handled in an appropriate manner.
+ * If replstr is NULL, then that internally is changed to a nil-string, so
+ * that we can still pretend to do somewhat meaningful substitution.
* No value is returned.
*/
void
@@ -38,6 +40,9 @@ strnsubst(char **str, const char *match, const char *replstr, size_t maxsize)
if (s2 == NULL)
err(1, "calloc");
+ if (replstr == NULL)
+ replstr = "";
+
if (match == NULL || replstr == NULL || maxsize == strlen(s1)) {
strlcpy(s2, s1, maxsize);
goto done;
diff --git a/usr.bin/xargs/xargs.c b/usr.bin/xargs/xargs.c
index e37a7e43cd0e..832e999687e5 100644
--- a/usr.bin/xargs/xargs.c
+++ b/usr.bin/xargs/xargs.c
@@ -454,10 +454,10 @@ prerun(int argc, char **argv)
free(tmp2);
/*
- * Free the input line buffer, and create a new dummy.
+ * Free the input line buffer, if we have one.
*/
- free(inpline);
- inpline = strdup("");
+ if (inpline != NULL)
+ free(inpline);
}
static void