1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-17 18:59:09 +00:00

Get rid of DEL() and FREE() macros.

Part of CoreLibExe must die.
This commit is contained in:
Darryl Pogue
2011-10-23 20:52:33 -07:00
committed by Adam Johnson
parent be26b145df
commit 8a3f0cfd5b
88 changed files with 262 additions and 265 deletions

View File

@ -65,7 +65,7 @@ struct Module {
wchar_t * name;
wchar_t * buildString;
~Module () { FREE(name); FREE(buildString); }
~Module () { free(name); free(buildString); }
};
struct EmailParams : AtomicRef {
@ -77,12 +77,12 @@ struct EmailParams : AtomicRef {
char * replyTo;
~EmailParams () {
FREE(smtp);
FREE(sender);
FREE(recipients);
FREE(username);
FREE(password);
FREE(replyTo);
free(smtp);
free(sender);
free(recipients);
free(username);
free(password);
free(replyTo);
}
};
@ -975,7 +975,7 @@ void CrashRemoveModule (
Module * module = (Module *) param;
SAFE_CRITSECT_ENTER();
{
DEL(module);
delete module;
}
SAFE_CRITSECT_LEAVE();
}