Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
12d99c68
Commit
12d99c68
authored
Sep 02, 2005
by
Christophe Massiot
Browse files
* src/misc/httpd.c: Fixed HTTPd closing when several HTTPd instances are
running.
parent
953697e9
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/misc/httpd.c
View file @
12d99c68
...
...
@@ -1267,10 +1267,10 @@ void httpd_HostDelete( httpd_host_t *host )
vlc_mutex_destroy
(
&
host
->
lock
);
vlc_object_destroy
(
host
);
vlc_object_release
(
httpd
);
if
(
httpd
->
i_host
<=
0
)
{
msg_Info
(
httpd
,
"httpd doesn't reference any host, deleting"
);
vlc_object_release
(
httpd
);
vlc_object_detach
(
httpd
);
vlc_object_destroy
(
httpd
);
}
...
...
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