Commit d38c4f98 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

directory: remove useless string if fdopendir() is supported

parent 66150e51
...@@ -76,7 +76,9 @@ struct directory_t ...@@ -76,7 +76,9 @@ struct directory_t
#ifndef WIN32 #ifndef WIN32
struct stat st; struct stat st;
#endif #endif
char path[1]; #ifndef HAVE_FDOPENDIR
char *path;
#endif
}; };
struct access_sys_t struct access_sys_t
...@@ -173,6 +175,9 @@ void DirClose( vlc_object_t * p_this ) ...@@ -173,6 +175,9 @@ void DirClose( vlc_object_t * p_this )
p_sys->current = current->parent; p_sys->current = current->parent;
closedir (current->handle); closedir (current->handle);
free (current->uri); free (current->uri);
#ifndef HAVE_FDOPENDIR
free (current->path);
#endif
free (current); free (current);
} }
...@@ -224,7 +229,7 @@ block_t *DirBlock (access_t *p_access) ...@@ -224,7 +229,7 @@ block_t *DirBlock (access_t *p_access)
memcpy (block->p_buffer, header, sizeof (header) - 1); memcpy (block->p_buffer, header, sizeof (header) - 1);
/* "Open" the base directory */ /* "Open" the base directory */
current = malloc (sizeof (*current) + strlen (p_access->psz_path)); current = malloc (sizeof (*current));
if (current == NULL) if (current == NULL)
{ {
block_Release (block); block_Release (block);
...@@ -232,7 +237,9 @@ block_t *DirBlock (access_t *p_access) ...@@ -232,7 +237,9 @@ block_t *DirBlock (access_t *p_access)
} }
current->parent = NULL; current->parent = NULL;
current->handle = p_sys->handle; current->handle = p_sys->handle;
strcpy (current->path, p_access->psz_path); #ifndef HAVE_FDOPENDIR
current->path = strdup (p_access->psz_path);
#endif
current->uri = p_sys->uri; current->uri = p_sys->uri;
if (fstat (dirfd (current->handle), &current->st)) if (fstat (dirfd (current->handle), &current->st))
{ {
...@@ -253,6 +260,9 @@ block_t *DirBlock (access_t *p_access) ...@@ -253,6 +260,9 @@ block_t *DirBlock (access_t *p_access)
closedir (current->handle); closedir (current->handle);
p_sys->current = current->parent; p_sys->current = current->parent;
free (current->uri); free (current->uri);
#ifndef HAVE_FDOPENDIR
free (current->path);
#endif
free (current); free (current);
if (p_sys->current == NULL) if (p_sys->current == NULL)
...@@ -297,14 +307,12 @@ block_t *DirBlock (access_t *p_access) ...@@ -297,14 +307,12 @@ block_t *DirBlock (access_t *p_access)
/* Handle recursion */ /* Handle recursion */
if (p_sys->mode != MODE_COLLAPSE) if (p_sys->mode != MODE_COLLAPSE)
{ {
directory_t *sub = malloc (sizeof (*sub) + strlen (current->path) + 1 directory_t *sub = malloc (sizeof (*sub));
+ strlen (entry));
if (sub == NULL) if (sub == NULL)
{ {
free (entry); free (entry);
return NULL; return NULL;
} }
sprintf (sub->path, "%s/%s", current->path, entry);
DIR *handle; DIR *handle;
#ifdef HAVE_FDOPENDIR #ifdef HAVE_FDOPENDIR
...@@ -319,7 +327,10 @@ block_t *DirBlock (access_t *p_access) ...@@ -319,7 +327,10 @@ block_t *DirBlock (access_t *p_access)
else else
handle = NULL; handle = NULL;
#else #else
handle = vlc_opendir (sub->path); if (asprintf (&sub->path, "%s/%s", current->path, entry) != -1)
handle = vlc_opendir (sub->path);
else
handle = NULL;
#endif #endif
if (handle != NULL) if (handle != NULL)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment