Skip to content

Commit 0b9864a

Browse files
bmwillgitster
authored andcommitted
real_path: set errno when max number of symlinks is exceeded
Set errno to ELOOP when the maximum number of symlinks is exceeded, as would be done by other symlink-resolving functions. Signed-off-by: Brandon Williams <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 7aeb81f commit 0b9864a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

abspath.c

+2
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,8 @@ char *strbuf_realpath(struct strbuf *resolved, const char *path,
141141
strbuf_reset(&symlink);
142142

143143
if (num_symlinks++ > MAXSYMLINKS) {
144+
errno = ELOOP;
145+
144146
if (die_on_error)
145147
die("More than %d nested symlinks "
146148
"on path '%s'", MAXSYMLINKS, path);

0 commit comments

Comments
 (0)