1
0
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:
Darryl Pogue
2012-01-20 23:30:32 -08:00
committed by Adam Johnson
parent 1fa1197c3e
commit 3c5ed83020
11 changed files with 18 additions and 20 deletions

View File

@ -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;