From 67e0e4caa5bacdd65327d8b302eace2d9ebd209f Mon Sep 17 00:00:00 2001 From: gaoliming Date: Wed, 30 Dec 2020 14:30:22 +0800 Subject: [PATCH] MdeModulePkg BrotliCustomDecompressLib: Remove the duplicated functions The same functions have been defined in BrotliDecUefiSupport.c. Signed-off-by: Liming Gao Cc: Hao A Wu Cc: Dandan Bi Reviewed-by: Hao A Wu --- .../BrotliDecompress.c | 23 ------------------- 1 file changed, 23 deletions(-) diff --git a/MdeModulePkg/Library/BrotliCustomDecompressLib/BrotliDecompress.c b/MdeModulePkg/Library/BrotliCustomDecompressLib/BrotliDecompress.c index 512518699e..53e2255f5f 100644 --- a/MdeModulePkg/Library/BrotliCustomDecompressLib/BrotliDecompress.c +++ b/MdeModulePkg/Library/BrotliCustomDecompressLib/BrotliDecompress.c @@ -7,29 +7,6 @@ **/ #include -/** - Dummy malloc function for compiler. -**/ -VOID * -BrDummyMalloc ( - IN size_t Size - ) -{ - ASSERT (FALSE); - return NULL; -} - -/** - Dummy free function for compiler. -**/ -VOID -BrDummyFree ( - IN VOID * Ptr - ) -{ - ASSERT (FALSE); -} - /** Allocation routine used by BROTLI decompression. -- 2.39.2