Adding yaml-cpp for #428, use rando fork until jbeder/yaml-cpp#342 lands.

This commit is contained in:
Ben Vanik
2016-01-01 12:13:36 -08:00
parent 171a10ab9b
commit 8770e6e6cf
8 changed files with 27 additions and 1 deletions

View File

@@ -289,7 +289,7 @@ dword_result_t NtWriteFile(dword_t file_handle, dword_t event_handle,
size_t bytes_written = 0;
result = file->Write(
buffer, buffer_length,
byte_offset_ptr ? static_cast<uint32_t>(*byte_offset_ptr) : -1u,
byte_offset_ptr ? static_cast<uint32_t>(*byte_offset_ptr) : -1,
&bytes_written, apc_context);
if (XSUCCEEDED(result)) {
info = (int32_t)bytes_written;