Merge pull request #1405 from shawnl/path-max

missing PATH_MAX change
This commit is contained in:
Andrew Kelley 2018-08-23 20:16:13 -04:00 committed by GitHub
commit 6c064cfd88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -638,10 +638,9 @@ pub async fn readFile(loop: *Loop, file_path: []const u8, max_size: usize) ![]u8
var close_op = try CloseOperation.start(loop);
defer close_op.finish();
const path_with_null = try std.cstr.addNullByte(loop.allocator, file_path);
defer loop.allocator.free(path_with_null);
const file_path_c = try os.toPosixPath(file_path);
const fd = try await (async openRead(loop, path_with_null[0..file_path.len]) catch unreachable);
const fd = try await (async openRead(loop, file_path_c[0..file_path.len]) catch unreachable);
close_op.setHandle(fd);
var list = std.ArrayList(u8).init(loop.allocator);