summaryrefslogtreecommitdiff
path: root/Cryptlib/SysCall
diff options
context:
space:
mode:
authorMatthew Garrett <mjg@redhat.com>2012-07-09 10:14:28 -0400
committerMatthew Garrett <mjg@redhat.com>2012-07-09 10:17:13 -0400
commitf7d6ecac5fc8f7662f0b13faea81bf1526cbed7a (patch)
treeb0b869509559f28f9d0c6c914cbc3e7ec65fe28f /Cryptlib/SysCall
parent85bbd2c4ccfb0ca7f471784c584c660633565a91 (diff)
downloadefi-boot-shim-f7d6ecac5fc8f7662f0b13faea81bf1526cbed7a.tar.gz
efi-boot-shim-f7d6ecac5fc8f7662f0b13faea81bf1526cbed7a.zip
Cryptlib update
Diffstat (limited to 'Cryptlib/SysCall')
-rw-r--r--Cryptlib/SysCall/BaseMemAllocation.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cryptlib/SysCall/BaseMemAllocation.c b/Cryptlib/SysCall/BaseMemAllocation.c
index cea84695..1abe78e3 100644
--- a/Cryptlib/SysCall/BaseMemAllocation.c
+++ b/Cryptlib/SysCall/BaseMemAllocation.c
@@ -32,7 +32,7 @@ void *realloc (void *ptr, size_t size)
// BUG: hardcode OldSize == size! We have no any knowledge about
// memory size of original pointer ptr.
//
- return ReallocatePool (ptr, (UINTN)size, (UINTN)size);
+ return ReallocatePool (ptr, (UINTN)size, (UINTN)size);
}
/* De-allocates or frees a memory block */