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
c7b0c46d
Commit
c7b0c46d
authored
8 years ago
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
output/recorder: fix typo in variable name
Fixes the dreaded error "Failed to create : No such file or directory".
https://bugs.musicpd.org/view.php?id=4625
parent
df578c91
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
NEWS
NEWS
+1
-0
RecorderOutputPlugin.cxx
src/output/plugins/RecorderOutputPlugin.cxx
+1
-1
No files found.
NEWS
View file @
c7b0c46d
...
...
@@ -7,6 +7,7 @@ ver 0.20.2 (not yet released)
- alsa: fix the DSD_U32 sample rate
- alsa: fix the DSD_U32 byte order
- alsa: support DSD_U16
- recorder: fix error "Failed to create : No such file or directory"
ver 0.20.1 (2017/01/09)
* input
...
...
This diff is collapsed.
Click to expand it.
src/output/plugins/RecorderOutputPlugin.cxx
View file @
c7b0c46d
...
...
@@ -274,7 +274,7 @@ RecorderOutput::ReopenFormat(AllocatedPath &&new_path)
assert
(
path
.
IsNull
());
assert
(
file
==
nullptr
);
FileOutputStream
*
new_file
=
new
FileOutputStream
(
path
);
FileOutputStream
*
new_file
=
new
FileOutputStream
(
new_
path
);
AudioFormat
new_audio_format
=
effective_audio_format
;
...
...
This diff is collapsed.
Click to expand it.
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