From c2a62388b76be238a2523ed313286b0c56944272 Mon Sep 17 00:00:00 2001 From: Ruslan Ermilov Date: Fri, 18 Aug 2000 10:41:37 +0000 Subject: [PATCH] Remove gratuitous free() call when we use special .SHELL target. --- usr.bin/make/job.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/usr.bin/make/job.c b/usr.bin/make/job.c index 213bed0b0651..1908475db606 100644 --- a/usr.bin/make/job.c +++ b/usr.bin/make/job.c @@ -2762,11 +2762,6 @@ Job_ParseShell(line) } } - /* - * Do not free up the words themselves, since they might be in use by the - * shell specification... - */ - free(words); return SUCCESS; }