ash: do not split the result of tilde expansion
A tilde expansion generates a valid pathname. Splitting it using IFS either leaves it unchanged or changes it to something unintended. Example: IFS=m HOME=/tmp; printf "%s\n" ~ Based on this commit authored by Jilles Tjoelker: http://git.kernel.org/cgit/utils/dash/dash.git/commit/?id=834629283f6c629a4da05ef60bae9445c954a19a Signed-off-by: Ron Yorston <rmy@tigress.co.uk> Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
		
				
					committed by
					
						 Denys Vlasenko
						Denys Vlasenko
					
				
			
			
				
	
			
			
			
						parent
						
							6798564b9e
						
					
				
				
					commit
					75a76269ba
				
			| @@ -5791,7 +5791,6 @@ exptilde(char *startp, char *p, int flags) | ||||
| 	struct passwd *pw; | ||||
| 	const char *home; | ||||
| 	int quotes = flags & (EXP_FULL | EXP_CASE | EXP_REDIR); | ||||
| 	int startloc; | ||||
|  | ||||
| 	name = p + 1; | ||||
|  | ||||
| @@ -5823,9 +5822,7 @@ exptilde(char *startp, char *p, int flags) | ||||
| 	if (!home || !*home) | ||||
| 		goto lose; | ||||
| 	*p = c; | ||||
| 	startloc = expdest - (char *)stackblock(); | ||||
| 	strtodest(home, SQSYNTAX, quotes); | ||||
| 	recordregion(startloc, expdest - (char *)stackblock(), 0); | ||||
| 	return p; | ||||
|  lose: | ||||
| 	*p = c; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user