I have Valac 0.30 installed. Running the following code,
[indent=4]
init
str : string
str = "Hello World";
data : array of uint8
data = (array of uint8) str;
print "%i\n", data.length;
I get a segfault. GDB tells me this:
Program received signal SIGSEGV, Segmentation fault. __memcpy_sse2_unaligned () at ../sysdeps/x86_64/multiarch/memcpy-sse2-unaligned.S:36 36 ../sysdeps/x86_64/multiarch/memcpy-sse2-unaligned.S: No such file or directory.
I've seen some other people with this problem, but none of them got solutions which have worked for me.
You are telling the compiler to hard cast a
string
into anarray of uint8
, however those types are not assignment compatible.Under the hood the simplified generated C code (which you can get with
valac -C
) looks like this:The
string
data type has two properties that are meant for what you are trying to do (Vala syntax):So you could write your code like this:
Or like this:
For completeness here is the
gdb
backtrace:So
g_memdup
is trying to copy 4294967295 bytes from an 11 byte string here.