Merge pull request #413 from chme/realpath

[misc] Replace m_realpath with realpath from stdlib.h
This commit is contained in:
ejurgensen
2017-08-12 21:52:30 +02:00
committed by GitHub
4 changed files with 2 additions and 26 deletions

View File

@@ -909,7 +909,7 @@ bulk_scan(int flags)
parent_id = process_parent_directories(path);
deref = m_realpath(path);
deref = realpath(path, NULL);
if (!deref)
{
DPRINTF(E_LOG, L_SCAN, "Skipping library directory %s, could not dereference: %s\n", path, strerror(errno));