Skip to content

Commit

Permalink
Merge remote-tracking branch 'mpg123/master' into master-with-github-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
mpg123 GitHub bot committed Feb 5, 2024
2 parents c2b5c82 + 820e1db commit 4221364
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
- libmpg123:
-- Also avoid indirect branches for builds with a single CPU optmization
(no OPT_MULTI) by actually using the wrappers in that case (bug 367).
-- Fix --enable-portable (no usage of LFS_WRAP_NONE, bug 368).

1.32.4
------
Expand Down
3 changes: 2 additions & 1 deletion src/libmpg123/libmpg123.c
Original file line number Diff line number Diff line change
Expand Up @@ -648,9 +648,10 @@ int attribute_align_arg mpg123_open_handle(mpg123_handle *mh, void *iohandle)
#ifndef PORTABLE_API
ret = INT123_wrap_open( mh, iohandle, NULL, -1
, mh->p.timeout, mh->p.flags & MPG123_QUIET );
iohandle = ret == LFS_WRAP_NONE ? iohandle : mh->wrapperdata;
if(ret >= 0)
#endif
ret = INT123_open_stream_handle(mh, ret == LFS_WRAP_NONE ? iohandle : mh->wrapperdata);
ret = INT123_open_stream_handle(mh, iohandle);
return ret;
}

Expand Down

0 comments on commit 4221364

Please sign in to comment.