Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Icecast-Server
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
102
Issues
102
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Wiki
Wiki
External Wiki
External Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Xiph.Org
Icecast-Server
Commits
a4b03ad2
Commit
a4b03ad2
authored
Aug 27, 2005
by
Karl Heyes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor memory leak, and compiler warning cleanup
svn path=/icecast/trunk/icecast/; revision=9857
parent
76b8ec88
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
src/slave.c
src/slave.c
+2
-2
src/source.c
src/source.c
+2
-1
No files found.
src/slave.c
View file @
a4b03ad2
...
...
@@ -64,8 +64,8 @@ static void *_slave_thread(void *arg);
static
thread_type
*
_slave_thread_id
;
static
int
slave_running
=
0
;
static
int
update_settings
=
0
;
volatile
static
unsigned
int
max_interval
=
0
;
volatile
static
int
rescan_relays
=
0
;
static
volatile
unsigned
int
max_interval
=
0
;
static
volatile
int
rescan_relays
=
0
;
relay_server
*
relay_free
(
relay_server
*
relay
)
{
...
...
src/source.c
View file @
a4b03ad2
...
...
@@ -1214,8 +1214,8 @@ void source_client_callback (client_t *client, void *arg)
global_lock
();
global
.
sources
--
;
global_unlock
();
source_clear_source
(
source
);
source_free_source
(
source
);
client_destroy
(
client
);
return
;
}
client
->
refbuf
=
old_data
->
associated
;
...
...
@@ -1319,6 +1319,7 @@ static void *source_fallback_file (void *arg)
if
(
connection_complete_source
(
source
,
0
)
<
0
)
break
;
source_client_thread
(
source
);
httpp_destroy
(
parser
);
}
while
(
0
);
if
(
file
)
fclose
(
file
);
...
...
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