GNOME Bugzilla – Bug 721001
(owned) array passed to method "loses" its length property before being passed
Last modified: 2013-12-24 09:04:47 UTC
With this code: void take(owned uint8[] ar, size_t filled) { stdout.printf("take ar.length=%lu filled=%lu\n", ar.length, filled); } void main() { uint8[]? ar = new uint8[1024]; take((owned) ar, ar.length); } With Vala 0.22.1, this is printed: take ar.length=1024 filled=1024 With Vala 0.23.1 (and master 9035483cb as of typing this), this is printed: take ar.length=1024 filled=0 Looking at the 0.23.1 generated C code, ar_length1 is being set to zero (ownership is being transferred) before the parameter is passed to the method.
Created attachment 264828 [details] Minimal test case (same as listed in description)
This is correct. Arguments are evaluated from left to right. ar is first transferred the ownership, then ar.length is set to zero, and finally the ar.length argument is obviously zero. It's expected, closing as not a bug.