Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
0a19f355
Commit
0a19f355
authored
Jul 07, 2014
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
directory: fix memory leak
parent
06402f46
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
modules/access/directory.c
modules/access/directory.c
+5
-2
No files found.
modules/access/directory.c
View file @
0a19f355
...
...
@@ -393,12 +393,15 @@ int DirRead (access_t *p_access, input_item_node_t *p_current_node)
/* Create an input item for the current entry */
psz_uri
=
encode_URI_component
(
psz_entry
);
if
(
psz_uri
==
NULL
||
asprintf
(
&
psz_full_uri
,
"%s/%s"
,
p_current
->
uri
,
psz_uri
)
==
-
1
)
||
asprintf
(
&
psz_full_uri
,
"%s/%s"
,
p_current
->
uri
,
psz_uri
)
==
-
1
)
psz_full_uri
=
NULL
;
free
(
psz_uri
);
if
(
psz_full_uri
==
NULL
)
{
closedir
(
handle
);
continue
;
}
free
(
psz_uri
);
int
i_type
=
i_res
==
ENTRY_DIR
?
ITEM_TYPE_DIRECTORY
:
ITEM_TYPE_FILE
;
p_new
=
input_item_NewWithType
(
psz_full_uri
,
psz_entry
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment