]> git.proxmox.com Git - mirror_edk2.git/blobdiff - BaseTools/Source/C/DevicePath/DevicePathFromText.c
BaseTools/DevicePath: Fix potential memory leak
[mirror_edk2.git] / BaseTools / Source / C / DevicePath / DevicePathFromText.c
index 3d2f5a811c4f7407a1f03688a534311e98d8df1b..776cf051b0d955044553461d20b457378ed897f1 100644 (file)
@@ -1,7 +1,7 @@
 /** @file\r
   DevicePathFromText protocol as defined in the UEFI 2.0 specification.\r
 \r
-Copyright (c) 2017, Intel Corporation. All rights reserved.<BR>\r
+Copyright (c) 2017 - 2018, Intel Corporation. All rights reserved.<BR>\r
 This program and the accompanying materials\r
 are licensed and made available under the terms and conditions of the BSD License\r
 which accompanies this distribution.  The full text of the license may be found at\r
@@ -3277,6 +3277,17 @@ UefiDevicePathLibConvertTextToDeviceNode (
     //\r
     FromText = DevPathFromTextFilePath;\r
     DeviceNode = FromText (DeviceNodeStr);\r
+    //\r
+    // According to above logic, if 'FromText' is NULL in the 'if' statement,\r
+    // then 'ParamStr' must be NULL as well. No memory allocation has been made\r
+    // in this case.\r
+    //\r
+    // The below check is for addressing a false positive potential memory leak\r
+    // issue raised from static analysis.\r
+    //\r
+    if (ParamStr != NULL) {\r
+      free (ParamStr);\r
+    }\r
   } else {\r
     DeviceNode = FromText (ParamStr);\r
     free (ParamStr);\r