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
80d767ba
Commit
80d767ba
authored
Nov 10, 2008
by
Led
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
0.8.7
parent
f7666930
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
3 deletions
+7
-3
ChangeLog
ChangeLog
+4
-0
configure
configure
+1
-1
configure.in
configure.in
+1
-1
interface.c
interface.c
+1
-1
No files found.
ChangeLog
View file @
80d767ba
ver 0.8.7 (2003/9/3)
1) Fix a memory leak. When closing a interface, was called close() on the fd
instead of calling fclose() on the fp that was opened with fdopen().
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.
...
...
configure
View file @
80d767ba
...
...
@@ -1713,7 +1713,7 @@ fi
# Define the identity of the package.
PACKAGE
=
mpd
VERSION
=
0.8.
6
VERSION
=
0.8.
7
cat
>>
confdefs.h
<<
_ACEOF
...
...
configure.in
View file @
80d767ba
AC_INIT(main.c)
AM_INIT_AUTOMAKE(mpd, 0.8.
6
)
AM_INIT_AUTOMAKE(mpd, 0.8.
7
)
AC_PROG_CC
AC_PROG_INSTALL
...
...
interface.c
View file @
80d767ba
...
...
@@ -94,7 +94,7 @@ void closeInterface(Interface * interface) {
interface
->
open
=
0
;
if
(
close
(
interface
->
fd
))
{
if
(
fclose
(
interface
->
fp
))
{
fprintf
(
stderr
,
"Error closing file pointer
\n
"
);
}
...
...
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