diff options
Diffstat (limited to 'sftp.c')
| -rw-r--r-- | sftp.c | 6 | 
1 files changed, 3 insertions, 3 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: sftp.c,v 1.170 2015/01/20 23:14:00 deraadt Exp $ */ +/* $OpenBSD: sftp.c,v 1.171 2015/08/20 22:32:42 deraadt Exp $ */  /*   * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org>   * @@ -1958,7 +1958,7 @@ complete(EditLine *el, int ch)  	/* Figure out which argument the cursor points to */  	cursor = lf->cursor - lf->buffer; -	line = (char *)xmalloc(cursor + 1); +	line = xmalloc(cursor + 1);  	memcpy(line, lf->buffer, cursor);  	line[cursor] = '\0';  	argv = makeargv(line, &carg, 1, "e, &terminated); @@ -1966,7 +1966,7 @@ complete(EditLine *el, int ch)  	/* Get all the arguments on the line */  	len = lf->lastchar - lf->buffer; -	line = (char *)xmalloc(len + 1); +	line = xmalloc(len + 1);  	memcpy(line, lf->buffer, len);  	line[len] = '\0';  	argv = makeargv(line, &argc, 1, NULL, NULL);  | 
