Skip to content
Snippets Groups Projects
Commit 62b266ae authored by Petter Reinholdtsen's avatar Petter Reinholdtsen
Browse files

Made mask unsigned to avoid shifting into sign bit.

The last iteration of the loop execute 1<<63, which would push the
result into the signed bit of a signed 64 bit type, and this
move into currently undefined behaviour with C99.  Avoid the
issue by making the operation work on unsigned 64 bit type instead.

This require libogg version to 1.3.4, raise autotools dependency check
to look for this.

Partly solves github issue #18.
parent 15acdb8e
No related branches found
No related tags found
No related merge requests found
Pipeline #6217 passed
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment