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
8a9d678b
Commit
8a9d678b
authored
May 25, 2021
by
Max Kellermann
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'v0.22.x'
parents
0440c41c
dbe12a6b
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
5 deletions
+10
-5
NEWS
NEWS
+2
-0
AndroidManifest.xml
android/AndroidManifest.xml
+2
-2
meson.build
meson.build
+4
-1
RuntimeError.hxx
src/util/RuntimeError.hxx
+2
-2
No files found.
NEWS
View file @
8a9d678b
...
...
@@ -14,6 +14,8 @@ ver 0.23 (not yet released)
- new tags "ComposerSort", "Ensemble", "Movement", "MovementNumber", and "Location"
* new build-time dependency: libfmt
ver 0.22.9 (not yet released)
ver 0.22.8 (2021/05/22)
* fix crash bug in "albumart" command (0.22.7 regression)
...
...
android/AndroidManifest.xml
View file @
8a9d678b
...
...
@@ -2,8 +2,8 @@
<manifest
xmlns:android=
"http://schemas.android.com/apk/res/android"
package=
"org.musicpd"
android:installLocation=
"auto"
android:versionCode=
"5
6
"
android:versionName=
"0.22.
8
"
>
android:versionCode=
"5
7
"
android:versionName=
"0.22.
9
"
>
<uses-sdk
android:minSdkVersion=
"21"
android:targetSdkVersion=
"29"
/>
...
...
meson.build
View file @
8a9d678b
...
...
@@ -118,7 +118,10 @@ if get_option('buildtype') != 'debug'
endif
if get_option('fuzzer')
fuzzer_flags = ['-fsanitize=fuzzer,address,undefined']
fuzzer_flags = ['-fsanitize=fuzzer']
if get_option('b_sanitize') == 'none'
fuzzer_flags += ['-fsanitize=address,undefined']
endif
add_global_arguments(fuzzer_flags, language: 'cpp')
add_global_arguments(fuzzer_flags, language: 'c')
add_global_link_arguments(fuzzer_flags, language: 'cpp')
...
...
src/util/RuntimeError.hxx
View file @
8a9d678b
...
...
@@ -35,7 +35,7 @@
#include <stdio.h>
#if
def __clang__
#if
defined(__clang__) || defined(__GNUC__)
#pragma GCC diagnostic push
// TODO: fix this warning properly
#pragma GCC diagnostic ignored "-Wformat-security"
...
...
@@ -59,7 +59,7 @@ FormatInvalidArgument(const char *fmt, Args&&... args) noexcept
return
std
::
invalid_argument
(
buffer
);
}
#if
def __clang__
#if
defined(__clang__) || defined(__GNUC__)
#pragma GCC diagnostic pop
#endif
...
...
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