diff options
author | Damien Miller <djm@mindrot.org> | 2015-10-14 08:25:32 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2015-10-14 08:25:32 +1100 |
commit | 5225db68e58a1048cb17f0e36e0d33bc4a8fc410 (patch) | |
tree | 8b5b407ba62e4628317b9b6aef8002af4e4cadd8 /openbsd-compat | |
parent | 7365fe5b4859de2305e40ea132da3823830fa710 (diff) |
upstream commit
revision 1.15
date: 2012/09/13 15:39:05; author: deraadt; state: Exp; lines: +2 -2;
specify the bounds of the dst to strlcat (both values were static and
equal, but it is more correct)
from Michal Mazurek
Diffstat (limited to 'openbsd-compat')
-rw-r--r-- | openbsd-compat/realpath.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openbsd-compat/realpath.c b/openbsd-compat/realpath.c index 6646330ca..f2083e0f6 100644 --- a/openbsd-compat/realpath.c +++ b/openbsd-compat/realpath.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: realpath.c,v 1.14 2011/07/24 21:03:00 miod Exp $ */ | 1 | /* $OpenBSD: realpath.c,v 1.15 2012/09/13 15:39:05 deraadt Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2003 Constantin S. Svintsoff <kostik@iclub.nsu.ru> | 3 | * Copyright (c) 2003 Constantin S. Svintsoff <kostik@iclub.nsu.ru> |
4 | * | 4 | * |
@@ -196,7 +196,7 @@ realpath(const char *path, char *resolved) | |||
196 | symlink[slen] = '/'; | 196 | symlink[slen] = '/'; |
197 | symlink[slen + 1] = 0; | 197 | symlink[slen + 1] = 0; |
198 | } | 198 | } |
199 | left_len = strlcat(symlink, left, sizeof(left)); | 199 | left_len = strlcat(symlink, left, sizeof(symlink)); |
200 | if (left_len >= sizeof(left)) { | 200 | if (left_len >= sizeof(left)) { |
201 | errno = ENAMETOOLONG; | 201 | errno = ENAMETOOLONG; |
202 | goto err; | 202 | goto err; |