- 09 Apr, 2021 7 commits
- 08 Apr, 2021 6 commits
-
-
bunnei authored
service: am: Update service function tables
-
bunnei authored
service: Add a toggle for auto stub fallback
-
bunnei authored
nvhost_nvdec_common: Avoid memcpy with null pointers
-
bunnei authored
svc: Expand SVC tables
-
Morph authored
- Used by eBASEBALLパワフルプロ野球2020
-
bunnei authored
service: fs: Update service function tables
-
- 07 Apr, 2021 21 commits
-
-
bunnei authored
nvhost_ctrl_gpu: Avoid sending null pointer to memcpy
-
bunnei authored
service: acc: Update service function tables
-
bunnei authored
common: Move assert failure handling into a cpp file.
-
bunnei authored
process_capability: Handle extended SVC range
-
bunnei authored
service: audio: Update service function tables
-
Morph authored
-
Morph authored
-
Morph authored
-
Morph authored
-
Morph authored
-
Morph authored
-
Morph authored
-
Morph authored
-
Morph authored
-
Morph authored
-
Morph authored
-
Morph authored
-
ameerj authored
12.x increased the number of available sessions and event resource counts
-
bunnei authored
vp9: Avoid memcpy with null pointers
-
Lioncash authored
12.x expanded the range of SVC entries from 0x7F to 0xBF (with all new entries being unused), so we can expand it to also match.
-
Lioncash authored
12.x extended the range of SVC IDs, so we need to expand the range of bits that need to be tested. The upside of this is that we can eliminate a range check, given the whole range is used.
-
- 05 Apr, 2021 3 commits
-
-
lat9nq authored
Avoid sending null pointer to memcpy as reported by Undefined Behavious Sanitizer. Co-authored-by: LC <mathew1800@gmail.com>
-
lat9nq authored
Undefined Behaviour Sanitizer reports a null pointer is being sent to memcpy, thought it's "guaranteed to never be null". Guard it with an if statement, and log when the action has been averted.
-
lat9nq authored
Avoid sending null pointer to memcpy as reported by Undefined Behaviour Sanitizer. Replaces the std::memcpy calls in SpliceVectors with std::copy calls. Opting to replace all the memcpy's with copy's. Co-authored-by: LC <mathew1800@gmail.com>
-
- 04 Apr, 2021 3 commits
-
-
LC authored
configure_graphics: Prevent stack-use-after-scope
-
Markus Wick authored
Advantage: Altering the handler does not need a full recompilation. Disadvantage: noreturn is droped, so the caller is a bit slower. We quite often run yuzu with a YOLO assertion handler. In fact, only very few games run at all with asserts. This patch allows developers to patch the handler without recompiling everything. The overhead of the missing "noreturn" attribute shoul be negletable.
-
lat9nq authored
Address Sanitizer reports stack-use-after-scope on line 231 `vulkan_devices.push_back(QString::fromStdString(name));`. Instead of using a pointer, copy the string into a std::string and use that, instead.
-