mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-14 10:09:48 +00:00
Revert r299279:
Simplify redundant malloc'ing in sed -e. It is causing havoc in the ports tree: ===> Configuring for wxsvg-1.5.7 sed: 1: "/gcc_dir=\\`/s/gcc /$CC /": bad flag in substitute command: '/' *** Error code 1 ===> Patching for vips-8.3.1 sed: 1: "1s|^#![[:space:]]*/usr/ ...": bad flag in substitute command: 's' *** Error code 1 PR: 195929 Reported by: danilo
This commit is contained in:
parent
a5921bc365
commit
11398c77da
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=299294
@ -125,6 +125,7 @@ int
|
|||||||
main(int argc, char *argv[])
|
main(int argc, char *argv[])
|
||||||
{
|
{
|
||||||
int c, fflag;
|
int c, fflag;
|
||||||
|
char *temp_arg;
|
||||||
|
|
||||||
(void) setlocale(LC_ALL, "");
|
(void) setlocale(LC_ALL, "");
|
||||||
|
|
||||||
@ -146,7 +147,11 @@ main(int argc, char *argv[])
|
|||||||
break;
|
break;
|
||||||
case 'e':
|
case 'e':
|
||||||
eflag = 1;
|
eflag = 1;
|
||||||
add_compunit(CU_STRING, optarg);
|
if ((temp_arg = malloc(strlen(optarg) + 2)) == NULL)
|
||||||
|
err(1, "malloc");
|
||||||
|
strcpy(temp_arg, optarg);
|
||||||
|
strcat(temp_arg, "\n");
|
||||||
|
add_compunit(CU_STRING, temp_arg);
|
||||||
break;
|
break;
|
||||||
case 'f':
|
case 'f':
|
||||||
fflag = 1;
|
fflag = 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user