File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
2
FLAC audio decoder. Choice of public domain or MIT-0. See license statements at the end of this file.
3
- dr_flac - v0.12.43 - 2024-12-17
3
+ dr_flac - v0.12.44 - TBD
4
4
5
5
David Reid - mackron@gmail.com
6
6
@@ -235,7 +235,7 @@ extern "C" {
235
235
236
236
#define DRFLAC_VERSION_MAJOR 0
237
237
#define DRFLAC_VERSION_MINOR 12
238
- #define DRFLAC_VERSION_REVISION 43
238
+ #define DRFLAC_VERSION_REVISION 44
239
239
#define DRFLAC_VERSION_STRING DRFLAC_XSTRINGIFY(DRFLAC_VERSION_MAJOR) "." DRFLAC_XSTRINGIFY(DRFLAC_VERSION_MINOR) "." DRFLAC_XSTRINGIFY(DRFLAC_VERSION_REVISION)
240
240
241
241
#include <stddef.h> /* For size_t. */
@@ -8294,7 +8294,7 @@ static drflac_result drflac_result_from_errno(int e)
8294
8294
#ifdef ENOSYS
8295
8295
case ENOSYS: return DRFLAC_NOT_IMPLEMENTED;
8296
8296
#endif
8297
- #ifdef ENOTEMPTY
8297
+ #if defined( ENOTEMPTY) && ENOTEMPTY != EEXIST /* In AIX, ENOTEMPTY and EEXIST use the same value. */
8298
8298
case ENOTEMPTY: return DRFLAC_DIRECTORY_NOT_EMPTY;
8299
8299
#endif
8300
8300
#ifdef ELOOP
@@ -12095,6 +12095,9 @@ DRFLAC_API drflac_bool32 drflac_next_cuesheet_track(drflac_cuesheet_track_iterat
12095
12095
/*
12096
12096
REVISION HISTORY
12097
12097
================
12098
+ v0.12.44 - TBD
12099
+ - Fix compilation for AIX OS.
12100
+
12098
12101
v0.12.43 - 2024-12-17
12099
12102
- Fix a possible buffer overflow during decoding.
12100
12103
- Improve detection of ARM64EC
You can’t perform that action at this time.
0 commit comments