vrischmann / zig-sqlite

zig-sqlite is a small wrapper around sqlite's C API, making it easier to use with Zig.
MIT License
367 stars 49 forks source link

build.zig: fix invalid reference #150

Closed Cloudef closed 9 months ago

Cloudef commented 9 months ago

computeTestTargets returns reference to a function local scope variable which goes out of scope once the function returns.

Description

When cross compiling the build panics as it accesses garbage memory.

Checklist

vrischmann commented 9 months ago

Thanks !