After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 721001 - (owned) array passed to method "loses" its length property before being passed
(owned) array passed to method "loses" its length property before being passed
Status: RESOLVED NOTABUG
Product: vala
Classification: Core
Component: Arrays
0.23.x
Other Linux
: Normal normal
: ---
Assigned To: Vala maintainers
Vala maintainers
Depends on:
Blocks:
 
 
Reported: 2013-12-24 02:04 UTC by Jim Nelson
Modified: 2013-12-24 09:04 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Minimal test case (same as listed in description) (207 bytes, text/x-vala)
2013-12-24 02:05 UTC, Jim Nelson
Details

Description Jim Nelson 2013-12-24 02:04:33 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.
Comment 1 Jim Nelson 2013-12-24 02:05:13 UTC
Created attachment 264828 [details]
Minimal test case (same as listed in description)
Comment 2 Luca Bruno 2013-12-24 09:04:47 UTC
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.