Jean Dao fedff06079 fix argsAlloc buffer size
The buffer `buf` contains N (= `slice_sizes.len`) slices followed by the
N null-terminated arguments. The N null-terminated arguments are stored
in the `contents` array list. Thus, `buf` size should be:
    @sizeOf([]u8) * slice_sizes.len + contents_slice.len

Instead of:
    @sizeOf([]u8) * slice_sizes.len + contents_slice.len + slice_sizes.len

This bug was found thanks to the gpa allocator which checks if freed
size matches allocated sizes for large allocations.
2022-01-29 20:46:06 +02:00
..
2022-01-24 17:29:19 +02:00
2022-01-28 16:23:47 -07:00
2022-01-27 19:35:08 +02:00
2022-01-24 20:15:32 +02:00
2022-01-17 16:56:50 +02:00
2022-01-27 19:42:40 +02:00
2022-01-24 20:29:05 +02:00
2022-01-07 00:06:06 -05:00
2022-01-17 12:32:02 +01:00
2022-01-28 11:45:04 -07:00
2022-01-20 10:54:45 +02:00
2022-01-29 20:46:06 +02:00
2021-10-27 16:07:48 -04:00
2022-01-07 00:06:06 -05:00
2022-01-07 00:06:06 -05:00