commit | c07484fdcde64db8e21294d38eec7fedcc54d47e | [log] [tgz] |
---|---|---|
author | Marcos Kintschner <marcos.ktn@gmail.com> | Thu Sep 13 20:34:08 2018 -0300 |
committer | Nicolas Dufresne <nicolas.dufresne@collabora.com> | Thu Sep 13 20:22:45 2018 -0400 |
tree | c7ade198b42aa45757234440b5f1e0105fa29d75 | |
parent | 118338a72532b051ab8930b43d9c494335a290f5 [diff] |
opusenc: fix segmentation fault at x86 version The argument 0x0 is interpreted by the x86 compiler as a 32-bit int, but it is consumed as a 64-bit uint causing a segmentation fault. We need to explicit cast it to guint64 in order for the va_list to be built correctly. https://bugzilla.gnome.org/show_bug.cgi?id=797092