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
fce9882a
Commit
fce9882a
authored
Feb 04, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix memory leak and dummy warning
parent
a9782f63
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
12 deletions
+15
-12
src/modules/cache.c
src/modules/cache.c
+15
-12
No files found.
src/modules/cache.c
View file @
fce9882a
...
...
@@ -36,6 +36,7 @@
#include <string.h>
/* strdup() */
#include <vlc_plugin.h>
#include <vlc_cpu.h>
#include <errno.h>
#include <sys/types.h>
#ifdef HAVE_UNISTD_H
...
...
@@ -452,14 +453,24 @@ void CacheSave (vlc_object_t *p_this, const char *dir,
free
(
filename
);
return
;
}
msg_Dbg
(
p_this
,
"saving plugins cache %s"
,
filename
);
FILE
*
file
=
utf8_fopen
(
tmpname
,
"wb"
);
if
(
file
==
NULL
)
goto
error
;
{
if
(
errno
!=
EACCES
&&
errno
!=
ENOENT
)
msg_Warn
(
p_this
,
"cannot create %s (%m)"
,
tmpname
);
goto
out
;
}
msg_Dbg
(
p_this
,
"saving plugins cache %s"
,
tmpname
);
if
(
CacheSaveBank
(
file
,
pp_cache
,
n
))
goto
error
;
{
msg_Warn
(
p_this
,
"cannot write %s (%m)"
,
tmpname
);
clearerr
(
file
);
fclose
(
file
);
utf8_unlink
(
tmpname
);
goto
out
;
}
#ifndef WIN32
utf8_rename
(
tmpname
,
filename
);
/* atomically replace old cache */
...
...
@@ -469,17 +480,9 @@ void CacheSave (vlc_object_t *p_this, const char *dir,
fclose
(
file
);
utf8_rename
(
tmpname
,
filename
);
#endif
return
;
/* success! */
error:
msg_Warn
(
p_this
,
"cannot write %s (%m)"
,
tmpname
);
out:
free
(
filename
);
free
(
tmpname
);
if
(
file
!=
NULL
)
{
clearerr
(
file
);
fclose
(
file
);
}
}
static
int
CacheSaveConfig
(
FILE
*
,
const
module_t
*
);
...
...
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