diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-12-10 13:44:17 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-12-11 14:35:34 -0800 |
commit | 75af06f5f8ffc41fabd100253aad222cb4ab8662 (patch) | |
tree | cbb2735d3981ae92b272b761eb966e9c910ecea1 /alias.c | |
parent | 265ea3a77418df2744575f1168f89a33f01e72d4 (diff) |
Replace uCalloc() and uTypedCalloc() with direct calloc() calls
All these wrappers did was mess with types.
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'alias.c')
-rw-r--r-- | alias.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -103,7 +103,7 @@ HandleAliasDef(KeyAliasDef * def, return True; } } - info = uTypedCalloc(1, AliasInfo); + info = calloc(1, sizeof(AliasInfo)); if (info == NULL) { WSGO("Allocation failure in HandleAliasDef\n"); |