From 21ce7a41791e461f5d92f6ce3c712b8dd1f33a54 Mon Sep 17 00:00:00 2001 From: andrewfish Date: Wed, 8 Jun 2011 22:31:29 +0000 Subject: InOsEmuPkg: Fix reconnect -r from the shell Signed-off-by: andrewfish git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11772 6f19259b-4bc3-4df7-8a09-765794883524 --- InOsEmuPkg/EmuGopDxe/GopScreen.c | 2 +- InOsEmuPkg/Unix/Sec/BlockIo.c | 1 + InOsEmuPkg/Unix/Sec/PosixFileSystem.c | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/InOsEmuPkg/EmuGopDxe/GopScreen.c b/InOsEmuPkg/EmuGopDxe/GopScreen.c index e7e58ad..7f4333d 100644 --- a/InOsEmuPkg/EmuGopDxe/GopScreen.c +++ b/InOsEmuPkg/EmuGopDxe/GopScreen.c @@ -372,7 +372,7 @@ EmuGopDestructor ( Status = EFI_SUCCESS; if (!Private->HardwareNeedsStarting) { - Status = Private->EmuIoThunk->Open (Private->EmuIoThunk); + Status = Private->EmuIoThunk->Close (Private->EmuIoThunk); Private->EmuGraphicsWindow = NULL; } diff --git a/InOsEmuPkg/Unix/Sec/BlockIo.c b/InOsEmuPkg/Unix/Sec/BlockIo.c index 64494fe..b764a63 100644 --- a/InOsEmuPkg/Unix/Sec/BlockIo.c +++ b/InOsEmuPkg/Unix/Sec/BlockIo.c @@ -701,6 +701,7 @@ EmuBlockIoThunkClose ( free (Private->Filename); } free (This->Private); + This->Private = NULL; } return EFI_SUCCESS; diff --git a/InOsEmuPkg/Unix/Sec/PosixFileSystem.c b/InOsEmuPkg/Unix/Sec/PosixFileSystem.c index 720f102..723e7be 100644 --- a/InOsEmuPkg/Unix/Sec/PosixFileSystem.c +++ b/InOsEmuPkg/Unix/Sec/PosixFileSystem.c @@ -1537,6 +1537,7 @@ PosixFileSystmeThunkClose ( free (Private->VolumeLabel); } free (This->Private); + This->Private = NULL; } return EFI_SUCCESS; -- cgit v1.1