summaryrefslogtreecommitdiff
path: root/InOsEmuPkg/Unix/Sec/PosixFileSystem.c
diff options
context:
space:
mode:
authorandrewfish <andrewfish@6f19259b-4bc3-4df7-8a09-765794883524>2011-06-03 03:31:32 +0000
committerandrewfish <andrewfish@6f19259b-4bc3-4df7-8a09-765794883524>2011-06-03 03:31:32 +0000
commit033d0e5ff6324045ffbb1c95cbecb2215e2d6716 (patch)
tree71abca8b7f658e5b350d8f9d992f95c28e9e6adb /InOsEmuPkg/Unix/Sec/PosixFileSystem.c
parent26fab514ee8fc04721d3940c7db6a60df4e8ed1d (diff)
downloadedk2-platforms-033d0e5ff6324045ffbb1c95cbecb2215e2d6716.tar.xz
Get BlockIo mapping interfaces working. Still need to work on detecting block size of devices, but you can map a .dmg file no problem at this point.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11724 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'InOsEmuPkg/Unix/Sec/PosixFileSystem.c')
-rw-r--r--InOsEmuPkg/Unix/Sec/PosixFileSystem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/InOsEmuPkg/Unix/Sec/PosixFileSystem.c b/InOsEmuPkg/Unix/Sec/PosixFileSystem.c
index 855825627f..720f10218a 100644
--- a/InOsEmuPkg/Unix/Sec/PosixFileSystem.c
+++ b/InOsEmuPkg/Unix/Sec/PosixFileSystem.c
@@ -1533,7 +1533,7 @@ PosixFileSystmeThunkClose (
}
if (This->Private != NULL) {
- if (Private->VolumeLabel == NULL) {
+ if (Private->VolumeLabel != NULL) {
free (Private->VolumeLabel);
}
free (This->Private);