Skip to content
Snippets Groups Projects
Commit 89dcbf5e authored by Vivek Das Mohapatra's avatar Vivek Das Mohapatra
Browse files

Catch circular symlinks or ones that are too deep as per MAXSYMLINKS

parent 639bac65
No related branches found
No related tags found
1 merge request!311Build capsule-capture-libs from a bundled copy of libcapsule
...@@ -328,7 +328,14 @@ void resolve_symlink_prefixed (ldlibs_t *ldlibs, int i) ...@@ -328,7 +328,14 @@ void resolve_symlink_prefixed (ldlibs_t *ldlibs, int i)
while( resolve_link(ldlibs->prefix.path, resolved, link_dir) ) while( resolve_link(ldlibs->prefix.path, resolved, link_dir) )
{ {
LDLIB_DEBUG( ldlibs, DEBUG_PATH, " resolved to: %s", resolved ); LDLIB_DEBUG( ldlibs, DEBUG_PATH, " resolved to: %s", resolved );
count++;
if( ++count > MAXSYMLINKS )
{
fprintf( stderr, "%s: MAXSYMLINKS (%d) exceeded resolving %s\n",
__PRETTY_FUNCTION__, MAXSYMLINKS,
ldlibs->needed[i].path );
break;
}
} }
if( count ) if( count )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment