From 4e07e87fe4c12718101b592bf8c88a9447fc0965 Mon Sep 17 00:00:00 2001 From: "Fu, Siyuan" Date: Mon, 4 Aug 2014 01:28:26 +0000 Subject: [PATCH] The pointer argument should be set to NULL if not used not FALSE. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Fu, Siyuan Reviewed-By: Ye, Ting (ting.ye@intel.com) git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15742 6f19259b-4bc3-4df7-8a09-765794883524 --- NetworkPkg/UefiPxeBcDxe/PxeBcMtftp.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/NetworkPkg/UefiPxeBcDxe/PxeBcMtftp.c b/NetworkPkg/UefiPxeBcDxe/PxeBcMtftp.c index 8adba6620f..9a80dc5e38 100644 --- a/NetworkPkg/UefiPxeBcDxe/PxeBcMtftp.c +++ b/NetworkPkg/UefiPxeBcDxe/PxeBcMtftp.c @@ -1,7 +1,7 @@ /** @file Functions implementation related with Mtftp for UefiPxeBc Driver. - Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.
+ Copyright (c) 2007 - 2014, Intel Corporation. All rights reserved.
This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License @@ -162,7 +162,7 @@ PxeBcMtftp6GetFileSize ( Status = Mtftp6->GetInfo ( Mtftp6, - FALSE, + NULL, Filename, NULL, (UINT8) OptCnt, @@ -604,7 +604,7 @@ PxeBcMtftp4GetFileSize ( Status = Mtftp4->GetInfo ( Mtftp4, - FALSE, + NULL, Filename, NULL, (UINT8) OptCnt,