Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
9b3a219b
Commit
9b3a219b
authored
Aug 07, 2009
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a segfault in module_Load in case of error.
parent
e8189268
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
src/modules/os.c
src/modules/os.c
+2
-1
No files found.
src/modules/os.c
View file @
9b3a219b
...
...
@@ -188,12 +188,13 @@ int module_Load( vlc_object_t *p_this, const char *psz_file,
char
*
path
=
ToLocale
(
psz_file
);
handle
=
dlopen
(
path
,
flags
);
LocaleFree
(
path
);
if
(
handle
==
NULL
)
{
msg_Warn
(
p_this
,
"cannot load module `%s' (%s)"
,
path
,
dlerror
()
);
LocaleFree
(
path
);
return
-
1
;
}
LocaleFree
(
path
);
#elif defined(HAVE_DL_SHL_LOAD)
handle
=
shl_load
(
psz_file
,
BIND_IMMEDIATE
|
BIND_NONFATAL
,
NULL
);
...
...
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