GNOME Bugzilla – Bug 755840
audiointerleave: make check fails with segmentation fault.
Last modified: 2015-09-30 08:04:01 UTC
test_audiointerleave_2ch_smallbuf fails when running make check for audiointerleave tests. Running suite(s): audiointerleave 0%: Checks: 1, Failures: 0, Errors: 1 elements/audiointerleave.c:1030:E:general:test_audiointerleave_2ch_smallbuf:0: (after this point) Received signal 11 (Segmentation fault) make: *** [elements/audiointerleave.check] Error 1 This is happening when creating the caps for GST_TYPE_BITMASK 0x9. This is solved by typecasting it to guint64
Created attachment 312391 [details] [review] fix segmentation fault
Thanks, pushed: commit 7c09277cd7bf766b8a564f6bfc1dcd344635572f Author: Vineeth TM <vineeth.tm@samsung.com> Date: Wed Sep 30 13:13:19 2015 +0900 audiointerleave: typecast bit-mask to guint64 to fix segmentation fault While creating caps in audiointerleave tests, bitmask is being set as 0x9 This is resulting in segmentation fault. Fix the same by typecasting to guint64 https://bugzilla.gnome.org/show_bug.cgi?id=755840