mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-08 13:11:49 +00:00
gdbstub: fix reading module name for homebrew
This commit is contained in:
parent
e580c3970c
commit
f88606fbc1
1 changed files with 1 additions and 1 deletions
|
@ -187,7 +187,7 @@ namespace ams::dmnt {
|
||||||
|
|
||||||
/* Get module name buffer. */
|
/* Get module name buffer. */
|
||||||
char *module_name = module.GetNameBuffer();
|
char *module_name = module.GetNameBuffer();
|
||||||
module_name[0] = 0;
|
std::memset(module_name, 0, ModuleDefinition::PathLengthMax);
|
||||||
|
|
||||||
/* Read module path. */
|
/* Read module path. */
|
||||||
struct {
|
struct {
|
||||||
|
|
Loading…
Reference in a new issue