diff options
-rw-r--r-- | MdeModulePkg/Universal/DevicePathDxe/DevicePathToText.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/MdeModulePkg/Universal/DevicePathDxe/DevicePathToText.c b/MdeModulePkg/Universal/DevicePathDxe/DevicePathToText.c index d169c4d0d5..d7cff207fe 100644 --- a/MdeModulePkg/Universal/DevicePathDxe/DevicePathToText.c +++ b/MdeModulePkg/Universal/DevicePathDxe/DevicePathToText.c @@ -1875,6 +1875,7 @@ ConvertDeviceNodeToText ( //
DumpNode (&Str, (VOID *) DeviceNode, DisplayOnly, AllowShortcuts);
+ ASSERT (Str.Str != NULL);
return Str.Str;
}
@@ -1959,5 +1960,9 @@ ConvertDevicePathToText ( DevPathNode = NextDevicePathNode (DevPathNode);
}
- return Str.Str;
+ if (Str.Str == NULL) {
+ return AllocateZeroPool (sizeof (CHAR16));
+ } else {
+ return Str.Str;
+ }
}
|