From e43c6df98664193f3325543955fdf0354aede2c0 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Thu, 26 Apr 2018 20:51:12 -0600 Subject: [PATCH] Loader: fix missing NULL assignment --- stratosphere/loader/source/ldr_registration.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/stratosphere/loader/source/ldr_registration.cpp b/stratosphere/loader/source/ldr_registration.cpp index 7df25314d..900499ef2 100644 --- a/stratosphere/loader/source/ldr_registration.cpp +++ b/stratosphere/loader/source/ldr_registration.cpp @@ -118,6 +118,7 @@ void Registration::CloseRoService(void *service, Handle process_h) { target_process->nrr_infos[i].Close(); } } + target_process->owner_ro_service = NULL; } Result Registration::AddNrrInfo(u64 index, MappedCodeMemory *nrr_info) {