Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
f7666930
Commit
f7666930
authored
Nov 10, 2008
by
Led
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
0.8.6
parent
dc4fba44
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
4 deletions
+7
-4
ChangeLog
ChangeLog
+3
-0
configure
configure
+1
-1
configure.in
configure.in
+1
-1
interface.c
interface.c
+2
-2
No files found.
ChangeLog
View file @
f7666930
ver 0.8.6 (2003/8/25)
1) Fix a memory leak when a buffered existed, and a connection was unexpectedly closed, and i wasn't free'ing the buffer apropriatly.
ver 0.8.5 (2003/8/17)
1) Fix a bug where an extra end of line is returned when attempting to play a
non existing file. This causes parsing errors for clients.
...
...
configure
View file @
f7666930
...
...
@@ -1713,7 +1713,7 @@ fi
# Define the identity of the package.
PACKAGE
=
mpd
VERSION
=
0.8.
5
VERSION
=
0.8.
6
cat
>>
confdefs.h
<<
_ACEOF
...
...
configure.in
View file @
f7666930
AC_INIT(main.c)
AM_INIT_AUTOMAKE(mpd, 0.8.
5
)
AM_INIT_AUTOMAKE(mpd, 0.8.
6
)
AC_PROG_CC
AC_PROG_INSTALL
...
...
interface.c
View file @
f7666930
...
...
@@ -399,7 +399,7 @@ void flushInterfaceBuffer(Interface * interface) {
}
else
if
(
errno
!=
EAGAIN
&&
errno
!=
EINTR
)
{
/* cause interface to close */
free
(
interface
->
bufferList
);
free
List
(
interface
->
bufferList
);
interface
->
bufferList
=
NULL
;
interface
->
expired
=
1
;
}
...
...
@@ -434,7 +434,7 @@ void interfacePrintWithFD(int fd,char * buffer) {
if
(
interfaces
[
i
].
outputBufferSize
>
interface_max_output_buffer_size
)
{
fprintf
(
stderr
,
"output buffer size (%lli) is larger than the max (%lli)
\n
"
,
interfaces
[
i
].
outputBufferSize
,
interface_max_output_buffer_size
);
/* cause interface to close */
free
(
interfaces
[
i
].
bufferList
);
free
List
(
interfaces
[
i
].
bufferList
);
interfaces
[
i
].
bufferList
=
NULL
;
interfaces
[
i
].
expired
=
1
;
return
;
...
...
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