diff options
author | Subv <subv2112@gmail.com> | 2018-07-31 03:09:13 +0200 |
---|---|---|
committer | Subv <subv2112@gmail.com> | 2018-07-31 03:09:13 +0200 |
commit | e119e17d1824cbc41153d8f55d81b76b3da438f6 (patch) | |
tree | c5d6a836d03be566f4efa3679482589d7f5bc644 /src/core/hle | |
parent | nvhost_ctrl_gpu: Only read the input parameters if they are actually there. (diff) | |
download | yuzu-e119e17d1824cbc41153d8f55d81b76b3da438f6.tar yuzu-e119e17d1824cbc41153d8f55d81b76b3da438f6.tar.gz yuzu-e119e17d1824cbc41153d8f55d81b76b3da438f6.tar.bz2 yuzu-e119e17d1824cbc41153d8f55d81b76b3da438f6.tar.lz yuzu-e119e17d1824cbc41153d8f55d81b76b3da438f6.tar.xz yuzu-e119e17d1824cbc41153d8f55d81b76b3da438f6.tar.zst yuzu-e119e17d1824cbc41153d8f55d81b76b3da438f6.zip |
Diffstat (limited to 'src/core/hle')
-rw-r--r-- | src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp b/src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp index 126782573..5a1123ad2 100644 --- a/src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp +++ b/src/core/hle/service/nvdrv/devices/nvhost_gpu.cpp @@ -132,9 +132,12 @@ u32 nvhost_gpu::SubmitGPFIFO(const std::vector<u8>& input, std::vector<u8>& outp LOG_WARNING(Service_NVDRV, "(STUBBED) called, gpfifo={:X}, num_entries={:X}, flags={:X}", params.address, params.num_entries, params.flags); - auto entries = std::vector<IoctlGpfifoEntry>(); - entries.resize(params.num_entries); - std::memcpy(&entries[0], &input.data()[sizeof(IoctlSubmitGpfifo)], + ASSERT_MSG(input.size() == + sizeof(IoctlSubmitGpfifo) + params.num_entries * sizeof(IoctlGpfifoEntry), + "Incorrect input size"); + + std::vector<IoctlGpfifoEntry> entries(params.num_entries); + std::memcpy(entries.data(), &input[sizeof(IoctlSubmitGpfifo)], params.num_entries * sizeof(IoctlGpfifoEntry)); for (auto entry : entries) { Tegra::GPUVAddr va_addr = entry.Address(); |