mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-22 13:20:05 +00:00
Replace calls to ALLOC() macro with malloc.
This commit is contained in:
@ -514,7 +514,7 @@ static void IMail (
|
||||
|
||||
// Create a transaction record
|
||||
MailTransaction * transaction = new(
|
||||
ALLOC(offsetof(MailTransaction, buffer) + bytes)
|
||||
malloc(offsetof(MailTransaction, buffer) + bytes)
|
||||
) MailTransaction;
|
||||
transaction->stepTable = stepTable;
|
||||
transaction->sock = nil;
|
||||
|
Reference in New Issue
Block a user