diff options
author | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-07-24 10:15:33 +0000 |
---|---|---|
committer | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2006-07-24 10:15:33 +0000 |
commit | c4898a017e6ae387f55c7cfccb18e77fde7a8c16 (patch) | |
tree | 252444d38740bf4ae9dfc9046d62160157de8843 /MdePkg | |
parent | 893cea14634c759fc2363489807c89cca57b76a6 (diff) | |
download | edk2-platforms-c4898a017e6ae387f55c7cfccb18e77fde7a8c16.tar.xz |
Fix a bug in UefiDevicePathLib
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1084 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg')
-rw-r--r-- | MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.c b/MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.c index e05736bbb7..f3e04e0319 100644 --- a/MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.c +++ b/MdePkg/Library/UefiDevicePathLib/UefiDevicePathLib.c @@ -396,6 +396,7 @@ CreateDeviceNode ( if (DevicePath != NULL) {
DevicePath->Type = NodeType;
DevicePath->SubType = NodeSubType;
+ SetDevicePathNodeLength (DevicePath, NodeLength);
}
return DevicePath;
|