1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-11-24 01:50:54 +01:00

zsh-workers/7713

This commit is contained in:
Tanaka Akira 1999-09-08 09:13:22 +00:00
parent 2c6be9080e
commit 1d24d00bbd

View file

@ -2963,7 +2963,8 @@ char *
bslashquote(const char *s, char **e, int instring)
{
const char *u, *tt;
char *v, buf[PATH_MAX * 2];
char *v;
VARARR(char, buf, 2 * strlen(s) + 1);
int sf = 0;
tt = v = buf;