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
b5809048
Commit
b5809048
authored
Apr 17, 2005
by
Sigmund Augdal Helberg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor memleak fixes
parent
4a3bca70
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
0 deletions
+3
-0
src/libvlc.c
src/libvlc.c
+1
-0
src/misc/messages.c
src/misc/messages.c
+2
-0
No files found.
src/libvlc.c
View file @
b5809048
...
@@ -2362,6 +2362,7 @@ static void InitDeviceValues( vlc_t *p_vlc )
...
@@ -2362,6 +2362,7 @@ static void InitDeviceValues( vlc_t *p_vlc )
hal_free_string
(
block_dev
);
hal_free_string
(
block_dev
);
}
}
hal_free_string_array
(
devices
);
}
}
hal_shutdown
(
ctx
);
hal_shutdown
(
ctx
);
...
...
src/misc/messages.c
View file @
b5809048
...
@@ -209,6 +209,8 @@ void __msg_Unsubscribe( vlc_object_t *p_this, msg_subscription_t *p_sub )
...
@@ -209,6 +209,8 @@ void __msg_Unsubscribe( vlc_object_t *p_this, msg_subscription_t *p_sub )
/* Remove this subscription */
/* Remove this subscription */
REMOVE_ELEM
(
p_bank
->
pp_sub
,
p_bank
->
i_sub
,
i_index
);
REMOVE_ELEM
(
p_bank
->
pp_sub
,
p_bank
->
i_sub
,
i_index
);
free
(
p_sub
);
vlc_mutex_unlock
(
&
p_bank
->
lock
);
vlc_mutex_unlock
(
&
p_bank
->
lock
);
}
}
...
...
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