summaryrefslogtreecommitdiff
path: root/Cryptlib/SysCall/BaseMemAllocation.c
diff options
context:
space:
mode:
authorMatthew Garrett <mjg@redhat.com>2012-07-09 10:17:13 -0400
committerMatthew Garrett <mjg@redhat.com>2012-07-09 10:17:13 -0400
commit5f64876076e6d60f4cabc62892a2d857d6e3b02f (patch)
treeb0b869509559f28f9d0c6c914cbc3e7ec65fe28f /Cryptlib/SysCall/BaseMemAllocation.c
parentb2058cf8973ce8b0e98437293ac54f88decaf48a (diff)
downloadefi-boot-shim-5f64876076e6d60f4cabc62892a2d857d6e3b02f.tar.gz
efi-boot-shim-5f64876076e6d60f4cabc62892a2d857d6e3b02f.zip
Cryptlib update
Diffstat (limited to 'Cryptlib/SysCall/BaseMemAllocation.c')
-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 */