2
3
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-14 10:37:41 -04:00

Replace MemSet with memset.

This commit is contained in:
Darryl Pogue
2012-01-21 15:39:10 -08:00
committed by Adam Johnson
parent 12ac9a79be
commit f4ff65ccbc
8 changed files with 12 additions and 12 deletions

View File

@ -679,10 +679,10 @@ PYTHON_GLOBAL_METHOD_DEFINITION(PtSendFriendInvite, args, "Params: emailAddress,
}
wchar_t emailAddr[kMaxEmailAddressLength];
MemSet(emailAddr, 0, sizeof(emailAddr));
memset(emailAddr, 0, sizeof(emailAddr));
wchar_t toName[kMaxPlayerNameLength];
MemSet(toName, 0, sizeof(toName));
memset(toName, 0, sizeof(toName));
// Check and see if the email address is ok
int origStrLen = 0;