mirror of
https://github.com/tmate-io/tmate.git
synced 2024-11-07 16:54:01 +01:00
Sync OpenBSD patchset 1099:
Do not return a buffer on the stack, mentioned by jsg a while ago.
This commit is contained in:
parent
c8c6a23d66
commit
995c9a50ab
6
cmd.c
6
cmd.c
@ -1324,8 +1324,10 @@ find_home:
|
||||
return (s->cwd);
|
||||
|
||||
complete_path:
|
||||
if (root[skip] == '\0')
|
||||
return (root);
|
||||
if (root[skip] == '\0') {
|
||||
strlcpy(path, root, sizeof path);
|
||||
return (path);
|
||||
}
|
||||
n = snprintf(path, sizeof path, "%s/%s", root, cwd + skip);
|
||||
if (n > 0 && (size_t)n < sizeof path)
|
||||
return (path);
|
||||
|
Loading…
Reference in New Issue
Block a user